Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/juliushaertl/apporder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2016-05-19 00:46:53 +0300
committerJulius Haertl <jus@bitgrid.net>2016-05-19 00:46:53 +0300
commit7f00bd823ab38705a3ed6890fe31dc3b65bd27fb (patch)
tree691837b188f8a3e5f19f6c79861928da2d921206
parent113433b3892fa13e48c32e92bff260b1d87bcb40 (diff)
Remove menu hiding
fixes #2
-rw-r--r--js/apporder.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/js/apporder.js b/js/apporder.js
index 3c6dfc3..97cc9cb 100644
--- a/js/apporder.js
+++ b/js/apporder.js
@@ -3,7 +3,6 @@ $(function() {
var app_menu = $('#apps ul');
if(!app_menu.length)
return;
- app_menu.hide();
// restore existing order
$.get( "/apps/apporder/ajax/order.php", { requesttoken: oc_requesttoken}, function(data) {
@@ -24,7 +23,6 @@ $(function() {
$.each(order,function(order,value) {
app_menu.prepend(available_apps[value]);
})
- app_menu.show();
});
// make app menu sortable