diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-10-05 17:44:25 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-10-05 17:44:25 +0200 |
commit | c17d60165a47d410721b9b043b9244c85a37b346 (patch) | |
tree | 34867169ec258c9f2ff7c5d8e58d40f2a2799145 /apps | |
parent | cab0be6eedef14c419a2c94dce0461418e5f9cf8 (diff) | |
download | nextcloud-server-c17d60165a47d410721b9b043b9244c85a37b346.tar.gz nextcloud-server-c17d60165a47d410721b9b043b9244c85a37b346.zip |
Fix tooltip placement on rename error
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 2516dd3e957..6cf82391baf 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1783,7 +1783,7 @@ } } catch (error) { input.attr('title', error); - input.tooltip({placement: 'left', trigger: 'manual'}); + input.tooltip({placement: 'right', trigger: 'manual'}); input.tooltip('show'); input.addClass('error'); } @@ -1797,7 +1797,7 @@ input.removeClass('error'); } catch (error) { input.attr('title', error); - input.tooltip({placement: 'left', trigger: 'manual'}); + input.tooltip({placement: 'right', trigger: 'manual'}); input.tooltip('show'); input.addClass('error'); } |