Merge pull request #17871 from owncloud/add-fallback-to-shim

Add `fallback` to shim
remotes/origin/handlebars-approach
Hendrik Leppelsack 10 years ago
commit 5b21ed805c
  1. 2
      core/js/js.js

@ -1888,6 +1888,8 @@ jQuery.fn.tipsy = function(argument) {
}
if(argument.title) {
options.title = argument.title;
} else if(argument.fallback) {
options.title = argument.fallback;
}
// destroy old tooltip in case the title has changed
jQuery.fn.tooltip.call(this, 'destroy');

Loading…
Cancel
Save