diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html index 88a0584c9..b495855c7 100644 --- a/openlp/plugins/remotes/html/index.html +++ b/openlp/plugins/remotes/html/index.html @@ -80,7 +80,7 @@ ${blank} ${theme} ${desktop} - ${show} + ${show}
${prev} @@ -111,7 +111,7 @@ ${blank} ${theme} ${desktop} - ${show} + ${show}
${prev} diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index 6fad2ed16..e1a425860 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -246,9 +246,8 @@ window.OpenLP = { else { $.each(data.results.items, function (idx, value) { ul.append($("
  • ").append($("").attr("href", "#options") - .attr("data-rel", "dialog").attr("data-transition", "pop") - .attr("value", value[0]).click(OpenLP.showOptions) - .text(value[1]))); + .attr("data-rel", "dialog").attr("value", value[0]) + .click(OpenLP.showOptions).text(value[1]))); }); } ul.listview("refresh"); @@ -299,7 +298,7 @@ window.OpenLP = { "/api/" + $("#search-plugin").val() + "/add", {"data": text}, function () { - $("#options").dialog("close"); + //$("#options").dialog("close"); $.mobile.changePage("#service-manager"); } ); @@ -308,6 +307,11 @@ window.OpenLP = { return string.replace(/\\/g, "\\\\").replace(/"/g, "\\\"") } } +// Initial jQueryMobile options +$(document).bind("mobileinit", function(){ + $.mobile.defaultDialogTransition = "none"; + $.mobile.defaultPageTransition = "none"; +}); // Service Manager $("#service-manager").live("pagebeforeshow", OpenLP.loadService); $("#service-refresh").live("click", OpenLP.loadService);