Number Controllers Improvements

adds the ability to change the value in the Number box while the
controller is listening via .listen().

Prevents the slider bar from being wider than than 100%.
This commit is contained in:
Dennis Markgraf 2014-07-19 14:15:35 +02:00
parent 303cb10e07
commit b94ff75f35
3 changed files with 9 additions and 4 deletions

View File

@ -86,6 +86,8 @@ define([
function onMouseDrag(e) { function onMouseDrag(e) {
document.activeElement.blur();
var diff = prev_y - e.clientY; var diff = prev_y - e.clientY;
_this.setValue(_this.getValue() + diff * _this.__impliedStep); _this.setValue(_this.getValue() + diff * _this.__impliedStep);
@ -114,7 +116,7 @@ define([
{ {
updateDisplay: function() { updateDisplay: function() {
if (dom.isActive(this.__input)) return;
this.__input.value = this.__truncationSuspended ? this.getValue() : roundToDecimal(this.getValue(), this.__precision); this.__input.value = this.__truncationSuspended ? this.getValue() : roundToDecimal(this.getValue(), this.__precision);
return NumberControllerBox.superclass.prototype.updateDisplay.call(this); return NumberControllerBox.superclass.prototype.updateDisplay.call(this);
} }

View File

@ -56,6 +56,8 @@ function(NumberController, dom, css, common, styleSheet) {
function onMouseDown(e) { function onMouseDown(e) {
document.activeElement.blur();
dom.bind(window, 'mousemove', onMouseDrag); dom.bind(window, 'mousemove', onMouseDrag);
dom.bind(window, 'mouseup', onMouseUp); dom.bind(window, 'mouseup', onMouseUp);

View File

@ -273,7 +273,8 @@
background: #303030; background: #303030;
cursor: ew-resize; } cursor: ew-resize; }
.dg .c .slider-fg { .dg .c .slider-fg {
background: #2fa1d6; } background: #2fa1d6;
max-width: 100%; }
.dg .c .slider:hover { .dg .c .slider:hover {
background: #3c3c3c; } background: #3c3c3c; }
.dg .c .slider:hover .slider-fg { .dg .c .slider:hover .slider-fg {