diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-01-08 19:21:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-08 19:21:18 +0100 |
commit | e046ed3527dbafd1772a68b4996c5f797cc301e1 (patch) | |
tree | 70a765711bab7b0d31736a0428d0cfdd6754c82c /apps | |
parent | 4522588dfaa9ecb6858974d718b07e90f3d1accf (diff) | |
parent | c03122fc349df49bc0fd0d905439951119eba7ab (diff) | |
download | nextcloud-server-e046ed3527dbafd1772a68b4996c5f797cc301e1.tar.gz nextcloud-server-e046ed3527dbafd1772a68b4996c5f797cc301e1.zip |
Merge pull request #18753 from nextcloud/bugfix/noid/select-menu-hide
Do not rerender the selection menu on show
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filemultiselectmenu.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/files/js/filemultiselectmenu.js b/apps/files/js/filemultiselectmenu.js index c0ee1d163c7..d50fe28eace 100644 --- a/apps/files/js/filemultiselectmenu.js +++ b/apps/files/js/filemultiselectmenu.js @@ -36,7 +36,6 @@ */ show: function(context) { this._context = context; - this.render(); this.$el.removeClass('hidden'); if (window.innerWidth < 480) { this.$el.removeClass('menu-center').addClass('menu-right'); |