mirror of
https://github.com/jquery/jquery-ui.git
synced 2026-02-15 07:44:59 -05:00
fix for arrow key operation (refs #3801)
This commit is contained in:
@@ -158,9 +158,10 @@ $.widget("ui.slider", {
|
||||
|
||||
keydown: function(keyCode, handle) {
|
||||
if(/(37|38|39|40)/.test(keyCode)) {
|
||||
var oper = /(37|40)/.test(keyCode) ? "-=" : "+=";
|
||||
this.moveTo({
|
||||
x: /(37|39)/.test(keyCode) ? (keyCode == 37 ? '-' : '+') + '=' + this.oneStep("x") : 0,
|
||||
y: /(38|40)/.test(keyCode) ? (keyCode == 38 ? '-' : '+') + '=' + this.oneStep("y") : 0
|
||||
x: oper + this.oneStep("x"),
|
||||
y: oper + this.oneStep("y")
|
||||
}, handle);
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user