aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.button.js
diff options
context:
space:
mode:
authorRafael Xavier de Souza <rxaviers@gmail.com>2013-07-12 13:40:48 -0300
committerRafael Xavier de Souza <rxaviers@gmail.com>2014-01-24 18:22:14 -0200
commit96e027e4b14345722cc39589f59ce2ce5e94b991 (patch)
treeca32a2fff151af28597c158198550eca6e5b8f18 /ui/jquery.ui.button.js
parent2651f4571e76979d93cf10d50edc452b0311a5f2 (diff)
downloadjquery-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.button.js')
-rw-r--r--ui/jquery.ui.button.js20
1 files changed, 18 insertions, 2 deletions
diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js
index 6bde7863f..659ecbf37 100644
--- a/ui/jquery.ui.button.js
+++ b/ui/jquery.ui.button.js
@@ -12,7 +12,21 @@
* jquery.ui.core.js
* jquery.ui.widget.js
*/
-(function( $, undefined ) {
+(function( factory ) {
+ if ( typeof define === "function" && define.amd ) {
+
+ // AMD. Register as an anonymous module.
+ define([
+ "jquery",
+ "./jquery.ui.core",
+ "./jquery.ui.widget"
+ ], factory );
+ } else {
+
+ // Browser globals
+ factory( jQuery );
+ }
+}(function( $ ) {
var lastActive,
baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
@@ -390,4 +404,6 @@ $.widget( "ui.buttonset", {
}
});
-}( jQuery ) );
+return $.ui.button;
+
+}));