diff --git a/dashboard-ui/bower_components/paper-slider/paper-slider.html b/dashboard-ui/bower_components/paper-slider/paper-slider.html index 1e179a001a..fddc05a3d7 100644 --- a/dashboard-ui/bower_components/paper-slider/paper-slider.html +++ b/dashboard-ui/bower_components/paper-slider/paper-slider.html @@ -339,7 +339,7 @@ Custom property | Description | Default on-up="_resetKnob" on-track="_onTrack" on-transitionend="_knobTransitionEnd"> -
+ @@ -538,6 +538,7 @@ Custom property | Description | Default _positionKnob: function(ratio) { this._setImmediateValue(this._calcStep(this._calcKnobPosition(ratio))); + this._setPinValue(this.immediateValue); this._setRatio(this._calcRatio(this.immediateValue)); this.$.sliderKnob.style.left = (this.ratio * 100) + '%'; @@ -586,6 +587,7 @@ Custom property | Description | Default // update knob's position var translateX = ((this._calcRatio(immediateValue) * this._w) - this._startx); this.translate3d(translateX + 'px', 0, 0, this.$.sliderKnob); + this._setPinValue(immediateValue); }, _trackEnd: function() { @@ -600,6 +602,9 @@ Custom property | Description | Default this.fire('change'); }, + _setPinValue: function (value) { + this.pinValue = value; + }, _knobdown: function(event) { this._expandKnob(); diff --git a/dashboard-ui/vulcanize-out.html b/dashboard-ui/vulcanize-out.html index d934bd44e0..37332f7949 100644 --- a/dashboard-ui/vulcanize-out.html +++ b/dashboard-ui/vulcanize-out.html @@ -17949,7 +17949,7 @@ iron-selector:not(.narrow-layout) #main ::content [paper-drawer-toggle] {