.parent()\r
.bind('focus', function(e) { self.focus(this.firstChild); })\r
.bind('blur', function(e) { self.blur(this.firstChild); })\r
- .bind('keydown', function(e) { self.keydown(e.keyCode, this.firstChild); })\r
+ .bind('keydown', function(e) { if(!self.options.noKeyboard) self.keydown(e.keyCode, this.firstChild); })\r
;\r
\r
// Bind the click to the slider itself\r
x: Math.round(this.convertValue(x, "x")) || 0,\r
y: Math.round(this.convertValue(y, "y")) || 0\r
};\r
- \r
+ \r
if (!noPropagation) {\r
this.propagate('start', null);\r
this.propagate('stop', null);\r