summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-10-23 08:27:27 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-10-23 08:27:27 +0200
commit8652ada561baf9acac83ac88f713ab7560245cf0 (patch)
tree1a8d81dc0ea8a22ccae1ae85384dcaf4d49fc950 /apps
parentefdb535a5d04d800c4182ad473df5433640817f3 (diff)
downloadnextcloud-server-8652ada561baf9acac83ac88f713ab7560245cf0.tar.gz
nextcloud-server-8652ada561baf9acac83ac88f713ab7560245cf0.zip
Tooltip on hover only
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/files/js/filelist.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js
index 213d65cdad0..6c86286d568 100644
--- a/apps/files/js/filelist.js
+++ b/apps/files/js/filelist.js
@@ -330,7 +330,7 @@
// Toggle for grid view
this.$showGridView = $('input#showgridview');
this.$showGridView.on('change', _.bind(this._onGridviewChange, this));
- $('#view-toggle').tooltip({placement: 'bottom'});
+ $('#view-toggle').tooltip({placement: 'bottom', trigger: 'hover'});
this._onResize = _.debounce(_.bind(this._onResize, this), 250);
$('#app-content').on('appresized', this._onResize);