1 | 20c20 |
---|
2 | < options = $.extend({"speed": 'slow'}, this.options); |
---|
3 | --- |
---|
4 | > options = this.options; |
---|
5 | 36c36 |
---|
6 | < this._refreshValue(false); |
---|
7 | --- |
---|
8 | > this._refreshValue(); |
---|
9 | 70c70 |
---|
10 | < this._refreshValue(true); |
---|
11 | --- |
---|
12 | > this._refreshValue(); |
---|
13 | 98c98 |
---|
14 | < _refreshValue: function(animate) { |
---|
15 | --- |
---|
16 | > _refreshValue: function() { |
---|
17 | 101,102c101 |
---|
18 | < animate && this.options.easing && this.valueDiv.animate({'width': value + '%'}, this.options.speed, this.options.easing) || |
---|
19 | < this.valueDiv.width(value + '%'); |
---|
20 | --- |
---|
21 | > this.valueDiv.width(value + '%'); |
---|
22 | 104d102 |
---|
23 | < |
---|