diff --git a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js index 5f63113dd..c747aebc6 100644 --- a/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js +++ b/dashboard-ui/bower_components/emby-webcomponents/paperdialoghelper/paperdialoghelper.js @@ -166,7 +166,7 @@ }; // too buggy in IE, not even worth it - if (browser.msie) { + if (!browser.animate) { dlg.animationConfig = null; dlg.entryAnimation = null; dlg.exitAnimation = null; diff --git a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.slider.js b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.slider.js index a1bb63ba3..6b9cee55c 100644 --- a/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.slider.js +++ b/dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.slider.js @@ -211,8 +211,8 @@ "mouseup": "_controlVMouseUp" }); - slider.bind("mousedown", $.proxy(this._sliderVMouseDown, this)) - .bind("click", false); + slider.on("mousedown", $.proxy(this._sliderVMouseDown, this)) + .on("click", false); // 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) @@ -235,7 +235,7 @@ "keyup": "_handleKeyup" }); - this.handle.bind("click", false); + this.handle.on("click", false); //this._handleFormReset();