diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-22 01:51:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-22 01:51:42 -0500 |
commit | e102923a978d83268c04a3a5bf678054a845a58e (patch) | |
tree | 85a7df7c21902a6f91db88359737eb3624f587fe /apps/files | |
parent | 43eb424da1eae14d931db95c067361052f4d21de (diff) | |
parent | 2b2f27486a7760edc55b27047227d365682e43d0 (diff) | |
download | nextcloud-server-e102923a978d83268c04a3a5bf678054a845a58e.tar.gz nextcloud-server-e102923a978d83268c04a3a5bf678054a845a58e.zip |
Merge pull request #5000 from nextcloud/phil-davis-filename-input-tooltip
Make rename file tooltip error text change
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 2 | ||||
-rw-r--r-- | apps/files/js/newfilemenu.js | 1 |
2 files changed, 3 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'); } diff --git a/apps/files/js/newfilemenu.js b/apps/files/js/newfilemenu.js index 9f3b7eb7332..18d9104dc40 100644 --- a/apps/files/js/newfilemenu.js +++ b/apps/files/js/newfilemenu.js @@ -156,6 +156,7 @@ } catch (error) { $input.attr('title', error); $input.tooltip({placement: 'right', trigger: 'manual'}); + $input.tooltip('fixTitle'); $input.tooltip('show'); $input.addClass('error'); } |