summaryrefslogtreecommitdiffstats
path: root/settings/js
diff options
context:
space:
mode:
authorFelix A. Epp <work@felixepp.de>2017-01-23 16:29:16 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-04-25 00:22:01 +0200
commit5e5aa2eeebc6df41664ecb59f571a9f634ba8e66 (patch)
tree7332914a2cb8242daf0212ddfa3761b87dc71503 /settings/js
parentc51c41b2af25d888dcc2276d50a4848519eddb92 (diff)
downloadnextcloud-server-5e5aa2eeebc6df41664ecb59f571a9f634ba8e66.tar.gz
nextcloud-server-5e5aa2eeebc6df41664ecb59f571a9f634ba8e66.zip
Fix uninstall in tabular view
Signed-off-by: Felix A. Epp <work@felixepp.de>
Diffstat (limited to 'settings/js')
-rw-r--r--settings/js/apps.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index bde069e1b27..80ac732730f 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -455,8 +455,8 @@ OC.Settings.Apps = OC.Settings.Apps || {
element.val(t('settings','Uninstall'));
} else {
OC.Settings.Apps.rebuildNavigation();
- element.parent().fadeOut(function() {
- element.remove();
+ element.parents('#apps-list > .section').fadeOut(function() {
+ this.remove();
});
}
},'json');