##// END OF EJS Templates
added 'var'
Tarun Gaba -
Show More
@@ -67,7 +67,7 define([
67 var max = this.model.get('max');
67 var max = this.model.get('max');
68 this.$slider.slider('option', 'value', min);
68 this.$slider.slider('option', 'value', min);
69 this.$slider.slider('option', 'orientation', orientation);
69 this.$slider.slider('option', 'orientation', orientation);
70 value = this.model.get('value');
70 var value = this.model.get('value');
71 if(value > max) {
71 if(value > max) {
72 value = max;
72 value = max;
73 }
73 }
General Comments 0
You need to be logged in to leave comments. Login now