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

Add `fallback` to shim
This commit is contained in:
Hendrik Leppelsack 2015-07-26 13:01:25 +02:00
commit 5b21ed805c
1 changed files with 2 additions and 0 deletions

View File

@ -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');