diff options
author | Phil Davis <phil@jankaritech.com> | 2017-05-20 22:14:09 +0545 |
---|---|---|
committer | Phil Davis <phil@jankaritech.com> | 2017-05-21 08:22:40 +0545 |
commit | ca1d41e07732f70059885ed95f30ec29036e2fff (patch) | |
tree | 49177c31387efbb865f65ecc7503a4557278010c | |
parent | a442c86a8465a27fab84837d2fc40f2211de06b8 (diff) | |
download | nextcloud-server-ca1d41e07732f70059885ed95f30ec29036e2fff.tar.gz nextcloud-server-ca1d41e07732f70059885ed95f30ec29036e2fff.zip |
Make rename file tooltip error text change
Signed-off-by: Phil Davis <phil@jankaritech.com>
-rw-r--r-- | apps/files/js/filelist.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 187ede8c0bd..919b4d38f86 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -2140,6 +2140,7 @@ } catch (error) { input.attr('title', error); input.tooltip({placement: 'right', trigger: 'manual'}); + input.tooltip('fixTitle'); input.tooltip('show'); input.addClass('error'); } @@ -2154,6 +2155,7 @@ } catch (error) { input.attr('title', error); input.tooltip({placement: 'right', trigger: 'manual'}); + input.tooltip('fixTitle'); input.tooltip('show'); input.addClass('error'); } |