Browse Source
Merge pull request #4614 from aaronbhansen/patch-1
Take content settings before attr title
pull/3625/merge
Jack Lukic
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/definitions/modules/popup.js
|
|
@ -488,7 +488,7 @@ $.fn.popup = function(parameters) { |
|
|
|
}, |
|
|
|
content: function() { |
|
|
|
$module.removeData(metadata.content); |
|
|
|
return $module.data(metadata.content) || $module.attr('title') || settings.content; |
|
|
|
return $module.data(metadata.content) || settings.content || $module.attr('title'); |
|
|
|
}, |
|
|
|
variation: function() { |
|
|
|
$module.removeData(metadata.variation); |
|
|
|