Skip to content

Commit

Permalink
Merge pull request #28151 from owncloud/stable10-new-text-file-tooltip
Browse files Browse the repository at this point in the history
[stable10] Make new text file tooltip messages update
  • Loading branch information
Vincent Petry authored Jun 21, 2017
2 parents 08417a9 + 38dc10e commit 92500da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/files/js/filelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -2102,6 +2102,7 @@
} catch (error) {
input.attr('title', error);
input.tooltip({placement: 'right', trigger: 'manual'});
input.tooltip('fixTitle');
input.tooltip('show');
input.addClass('error');
}
Expand Down
1 change: 1 addition & 0 deletions apps/files/js/newfilemenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@
} catch (error) {
$input.attr('title', error);
$input.tooltip({placement: 'right', trigger: 'manual'});
$input.tooltip('fixTitle');
$input.tooltip('show');
$input.addClass('error');
}
Expand Down

0 comments on commit 92500da

Please sign in to comment.