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

github.com/nextcloud/apporder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2017-06-27 19:40:25 +0300
committerJulius Härtl <jus@bitgrid.net>2017-06-27 19:40:25 +0300
commitd702f9d6f61ad19a1c3d9deb5fd173651111b66f (patch)
treeee319bf1a53e06a51068580486299431bc59334b /js
parent71cf17f74e758f1b1ccd9011cf4671e3c30f5e6a (diff)
Fix sorting in settings and bugs with the new app menufix-sorting
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'js')
-rw-r--r--js/apporder.js8
1 files changed, 5 insertions, 3 deletions
diff --git a/js/apporder.js b/js/apporder.js
index 6c5c16d..288fd5f 100644
--- a/js/apporder.js
+++ b/js/apporder.js
@@ -4,7 +4,7 @@ $(function () {
if (!app_menu.length)
return;
- app_menu.hide();
+ app_menu.css('opacity', '0');
var mapMenu = function(parent, order) {
available_apps = {};
@@ -32,7 +32,9 @@ $(function () {
}
mapMenu($('#appmenu'), order);
mapMenu($('#apps').find('ul'), order);
- app_menu.show();
+ $(window).trigger('resize');
+ app_menu.css('opacity', '1');
+
});
// Sorting inside settings
@@ -49,7 +51,7 @@ $(function () {
url = OC.generateUrl('/apps/apporder/savePersonal');
}
$("#appsorter").children().each(function (i, el) {
- var item = $(el).find('a').attr('href');
+ var item = $(el).find('p').data("url");
items.push(item)
});
var json = JSON.stringify(items);