diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-07 11:07:33 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-07 11:07:33 +0200 |
commit | 6a4563f203d8decb07bee3a82e111d876255e516 (patch) | |
tree | e45d53a680965ae4c0bd8debed8387155c9c7b8a /apps | |
parent | 46fdb449a4eb87fe7ab2b0c2c96b61f52c37a150 (diff) | |
download | nextcloud-server-6a4563f203d8decb07bee3a82e111d876255e516.tar.gz nextcloud-server-6a4563f203d8decb07bee3a82e111d876255e516.zip |
Fix breadcrumb to reinit dnd after ajax nav #5064
Now correctly reinitializing the breadcrumb drop zone after ajax
navigation.
This also fixes dropping onto the "files" app icon.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/files.js | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 899bc6469e5..53858d65c65 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -98,6 +98,8 @@ Files={ lastWidth: 0, initBreadCrumbs: function () { + var $controls = $('#controls'); + Files.lastWidth = 0; Files.breadcrumbs = []; @@ -118,7 +120,10 @@ Files={ }); // event handlers for breadcrumb items - $('#controls .crumb a').on('click', onClickBreadcrumb); + $controls.find('.crumb a').on('click', onClickBreadcrumb); + + // setup drag and drop + $controls.find('.crumb:not(.last)').droppable(crumbDropOptions); }, resizeBreadcrumbs: function (width, firstRun) { @@ -176,11 +181,8 @@ $(document).ready(function() { $('#file_action_panel').attr('activeAction', false); - $('div.crumb:not(.last)').droppable(crumbDropOptions); - $('ul#apps>li:first-child').data('dir',''); - if($('div.crumb').length){ - $('ul#apps>li:first-child').droppable(crumbDropOptions); - } + // allow dropping on the "files" app icon + $('ul#apps li:first-child').data('dir','').droppable(crumbDropOptions); // Triggers invisible file input $('#upload a').on('click', function() { |