From db0b3bf42a85d6bff4f10ba620d3c288359117cc 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 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'); } -- 2.39.5