equal
deleted
inserted
replaced
98 |
98 |
99 this.sliderMaximized = true; |
99 this.sliderMaximized = true; |
100 |
100 |
101 this.sliderBackground.animate({"height": "9px"}, 100); |
101 this.sliderBackground.animate({"height": "9px"}, 100); |
102 this.sliderForeground.animate({"height": "9px"}, 100); |
102 this.sliderForeground.animate({"height": "9px"}, 100); |
|
103 this.positionMarker.animate({"height": "9px", "width": "9px", "margin-top": "-4px"}, 100); |
103 |
104 |
104 // this.selector.removeClass("Ldt-SliderMinimized"); |
105 // this.selector.removeClass("Ldt-SliderMinimized"); |
105 // this.selector.addClass("Ldt-SliderMaximized"); |
106 // this.selector.addClass("Ldt-SliderMaximized"); |
106 }; |
107 }; |
107 |
108 |
113 }; |
114 }; |
114 |
115 |
115 IriSP.SliderWidget.prototype.minimizeOnTimeout = function(event) { |
116 IriSP.SliderWidget.prototype.minimizeOnTimeout = function(event) { |
116 this.sliderBackground.animate({"height": "5px"}, 100); |
117 this.sliderBackground.animate({"height": "5px"}, 100); |
117 this.sliderForeground.animate({"height": "5px"}, 100); |
118 this.sliderForeground.animate({"height": "5px"}, 100); |
|
119 this.positionMarker.animate({"height": "5px", "width": "5px", "margin-top": "0px"}, 100); |
|
120 |
118 this.sliderMinimized = true; |
121 this.sliderMinimized = true; |
119 |
122 |
120 // this.selector.removeClass("Ldt-SliderMaximized"); |
123 // this.selector.removeClass("Ldt-SliderMaximized"); |
121 // this.selector.addClass("Ldt-SliderMinimized"); |
124 // this.selector.addClass("Ldt-SliderMinimized"); |
122 |
125 |