diff options
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 274bcebdf..816662fe6 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -13,9 +13,24 @@ * jquery.ui.widget.js * jquery.ui.position.js */ -(function( $ ) { +(function( factory ) { + if ( typeof define === "function" && define.amd ) { + + // AMD. Register as an anonymous module. + define([ + "jquery", + "./jquery.ui.core", + "./jquery.ui.widget", + "./jquery.ui.position" + ], factory ); + } else { + + // Browser globals + factory( jQuery ); + } +}(function( $ ) { -$.widget( "ui.tooltip", { +return $.widget( "ui.tooltip", { version: "@VERSION", options: { content: function() { @@ -431,4 +446,4 @@ $.widget( "ui.tooltip", { } }); -}( jQuery ) ); +})); |