diff options
author | Rafael Xavier de Souza <rxaviers@gmail.com> | 2013-07-12 13:40:48 -0300 |
---|---|---|
committer | Rafael Xavier de Souza <rxaviers@gmail.com> | 2014-01-24 18:22:14 -0200 |
commit | 96e027e4b14345722cc39589f59ce2ce5e94b991 (patch) | |
tree | ca32a2fff151af28597c158198550eca6e5b8f18 /ui/jquery.ui.mouse.js | |
parent | 2651f4571e76979d93cf10d50edc452b0311a5f2 (diff) | |
download | jquery-ui-96e027e4b14345722cc39589f59ce2ce5e94b991.tar.gz jquery-ui-96e027e4b14345722cc39589f59ce2ce5e94b991.zip |
All: Wrap source files with UMD return exports
Ref #9464
Ref gh-1029
Diffstat (limited to 'ui/jquery.ui.mouse.js')
-rw-r--r-- | ui/jquery.ui.mouse.js | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/ui/jquery.ui.mouse.js b/ui/jquery.ui.mouse.js index ce1ecca72..4f60c28fc 100644 --- a/ui/jquery.ui.mouse.js +++ b/ui/jquery.ui.mouse.js @@ -11,14 +11,27 @@ * Depends: * jquery.ui.widget.js */ -(function( $, undefined ) { +(function( factory ) { + if ( typeof define === "function" && define.amd ) { + + // AMD. Register as an anonymous module. + define([ + "jquery", + "./jquery.ui.widget" + ], factory ); + } else { + + // Browser globals + factory( jQuery ); + } +}(function( $ ) { var mouseHandled = false; $( document ).mouseup( function() { mouseHandled = false; }); -$.widget("ui.mouse", { +return $.widget("ui.mouse", { version: "@VERSION", options: { cancel: "input,textarea,button,select,option", @@ -174,4 +187,4 @@ $.widget("ui.mouse", { _mouseCapture: function(/* event */) { return true; } }); -})(jQuery); +})); |