update components
This commit is contained in:
parent
3e161d7edb
commit
8f431f49bb
2 changed files with 4 additions and 4 deletions
|
@ -166,7 +166,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
// too buggy in IE, not even worth it
|
// too buggy in IE, not even worth it
|
||||||
if (browser.msie) {
|
if (!browser.animate) {
|
||||||
dlg.animationConfig = null;
|
dlg.animationConfig = null;
|
||||||
dlg.entryAnimation = null;
|
dlg.entryAnimation = null;
|
||||||
dlg.exitAnimation = null;
|
dlg.exitAnimation = null;
|
||||||
|
|
|
@ -211,8 +211,8 @@
|
||||||
"mouseup": "_controlVMouseUp"
|
"mouseup": "_controlVMouseUp"
|
||||||
});
|
});
|
||||||
|
|
||||||
slider.bind("mousedown", $.proxy(this._sliderVMouseDown, this))
|
slider.on("mousedown", $.proxy(this._sliderVMouseDown, this))
|
||||||
.bind("click", false);
|
.on("click", false);
|
||||||
|
|
||||||
// We have to instantiate a new function object for the unbind to work properly
|
// We have to instantiate a new function object for the unbind to work properly
|
||||||
// since the method itself is defined in the prototype (causing it to unbind everything)
|
// since the method itself is defined in the prototype (causing it to unbind everything)
|
||||||
|
@ -235,7 +235,7 @@
|
||||||
"keyup": "_handleKeyup"
|
"keyup": "_handleKeyup"
|
||||||
});
|
});
|
||||||
|
|
||||||
this.handle.bind("click", false);
|
this.handle.on("click", false);
|
||||||
|
|
||||||
//this._handleFormReset();
|
//this._handleFormReset();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue