From ca1d41e07732f70059885ed95f30ec29036e2fff Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Sat, 20 May 2017 22:14:09 +0545 Subject: [PATCH] Make rename file tooltip error text change Signed-off-by: Phil Davis --- apps/files/js/filelist.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 187ede8c0b..919b4d38f8 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'); }