From 8f431f49bb0f6665c3d193ff2adebc7a5842e4c2 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Fri, 26 Feb 2016 23:38:30 -0500 Subject: [PATCH] update components --- .../paperdialoghelper/paperdialoghelper.js | 2 +- dashboard-ui/thirdparty/jquerymobile-1.4.5/jqm.slider.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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();