Merge pull request #13216 from nextcloud/backport/13212/stable14
[stable14] Files list not rendering if user has favorites navigation unfolded
This commit is contained in:
commit
0bbb1fa6ba
|
@ -248,8 +248,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 New Issue