diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-07-17 12:53:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-17 12:53:45 +0200 |
commit | a155f804859d4afc579986be6472dfd80ade267d (patch) | |
tree | 123031de8298ea99346c9f905155d37766955af0 /apps/files/js/navigation.js | |
parent | f78db1820138df0a097399f088057c1b0682ec98 (diff) | |
parent | cdb42432c3a58efc24f59d9a4bb453288f346eab (diff) | |
download | nextcloud-server-a155f804859d4afc579986be6472dfd80ade267d.tar.gz nextcloud-server-a155f804859d4afc579986be6472dfd80ade267d.zip |
Merge pull request #10230 from nextcloud/feature/shareoverview
Feature/shares overview
Diffstat (limited to 'apps/files/js/navigation.js')
-rw-r--r-- | apps/files/js/navigation.js | 26 |
1 files changed, 7 insertions, 19 deletions
diff --git a/apps/files/js/navigation.js b/apps/files/js/navigation.js index d4fa06cb45e..8ce976a6f53 100644 --- a/apps/files/js/navigation.js +++ b/apps/files/js/navigation.js @@ -172,30 +172,18 @@ */ _onClickMenuButton: function (ev) { var $target = $(ev.target); + var $menu = $target.parent('li'); var itemId = $target.closest('button').attr('id'); var collapsibleToggles = []; var dotmenuToggles = []; - // The collapsibleToggles-Array consists of a list of Arrays. Every subarray must contain the Button to listen to at the 0th index, - // and the parent, which should be toggled at the first arrayindex. - collapsibleToggles.push(["#button-collapse-favorites", "#button-collapse-parent-favorites"]); - - // The dotmenuToggles-Array consists of a list of Arrays. Every subarray must contain the Button to listen to at the 0th index, - // and the parent, which should be toggled at the first arrayindex. - dotmenuToggles.push(["#dotmenu-button-favorites", "dotmenu-content-favorites"]); - - collapsibleToggles.forEach(function foundToggle (item) { - if (item[0] === ("#" + itemId)) { - $(item[1]).toggleClass('open'); - var show = 1; - if (!$(item[1]).hasClass('open')) { - show = 0; - } - $.get(OC.generateUrl("/apps/files/api/v1/quickaccess/set/showList"), {show: show}, function (data, status) { - }); - } - }); + if ($menu.hasClass('collapsible') && $menu.data('expandedstate')) { + $menu.toggleClass('open'); + var show = $menu.hasClass('open') ? 1 : 0; + var key = $menu.data('expandedstate'); + $.post(OC.generateUrl("/apps/files/api/v1/toggleShowFolder/" + key), {show: show}); + } dotmenuToggles.forEach(function foundToggle (item) { if (item[0] === ("#" + itemId)) { |