Merge pull request #13212 from nextcloud/bugfix/noid/ie11-files-loading
Files list not rendering if user has favorites navigation unfolded
This commit is contained in:
commit
bcea6c3697
1 changed files with 5 additions and 2 deletions
|
@ -283,8 +283,11 @@
|
|||
* This method allows easy swapping of elements.
|
||||
*/
|
||||
swap: function (list, j, i) {
|
||||
list[i].before(list[j]);
|
||||
list[j].before(list[i]);
|
||||
var before = function(node, insertNode) {
|
||||
node.parentNode.insertBefore(insertNode, node);
|
||||
}
|
||||
before(list[i], list[j]);
|
||||
before(list[j], list[i]);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue