We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32487a7 commit dd51143Copy full SHA for dd51143
public/js/lib/views/arrow_configuration_view.js
@@ -97,10 +97,10 @@ if (!('CSSArrowPlease' in window)) window.CSSArrowPlease = {};
97
var target = $(ev.currentTarget),
98
val = parseInt(target.val()),
99
increment = ev.keyCode == 38 ? 1 : -1,
100
- multiply = ev.shiftKey ? 10 : 1
+ multiply = ev.shiftKey ? 10 : 1;
101
102
target.val(val + increment * multiply);
103
- this._updateModel(ev)
+ this._updateModel(ev);
104
}
105
106
};
0 commit comments