From 948d39b8986cba2e2ecfe67a2e29c7222fecbe2f Mon Sep 17 00:00:00 2001 From: Ghislain Seguin Date: Thu, 12 Jan 2012 21:22:00 -0800 Subject: [PATCH] Added dependency on jquery --- js/jquery.mobile.buttonMarkup.js | 2 +- js/jquery.mobile.collapsible.js | 2 +- js/jquery.mobile.collapsibleSet.js | 2 +- js/jquery.mobile.controlGroup.js | 2 +- js/jquery.mobile.core.js | 2 +- js/jquery.mobile.degradeInputs.js | 2 +- js/jquery.mobile.dialog.js | 2 +- js/jquery.mobile.event.js | 2 +- js/jquery.mobile.fieldContain.js | 2 +- js/jquery.mobile.fixHeaderFooter.js | 2 +- js/jquery.mobile.fixHeaderFooter.native.js | 2 +- js/jquery.mobile.forms.button.js | 2 +- js/jquery.mobile.forms.checkboxradio.js | 2 +- js/jquery.mobile.forms.select.custom.js | 3 ++- js/jquery.mobile.forms.select.js | 2 +- js/jquery.mobile.forms.slider.js | 2 +- js/jquery.mobile.forms.textinput.js | 2 +- js/jquery.mobile.grid.js | 2 +- js/jquery.mobile.init.js | 2 +- js/jquery.mobile.links.js | 2 +- js/jquery.mobile.listview.filter.js | 2 +- js/jquery.mobile.listview.js | 2 +- js/jquery.mobile.media.js | 2 +- js/jquery.mobile.navbar.js | 2 +- js/jquery.mobile.navigation.js | 3 ++- js/jquery.mobile.navigation.pushstate.js | 2 +- js/jquery.mobile.nojs.js | 2 +- js/jquery.mobile.page.js | 2 +- js/jquery.mobile.page.sections.js | 2 +- js/jquery.mobile.support.js | 2 +- js/jquery.mobile.transition.flip.js | 2 +- js/jquery.mobile.transition.flow.js | 2 +- js/jquery.mobile.transition.js | 2 +- js/jquery.mobile.transition.pop.js | 2 +- js/jquery.mobile.transition.slide.js | 2 +- js/jquery.mobile.transition.slidedown.js | 2 +- js/jquery.mobile.transition.slideup.js | 2 +- js/jquery.mobile.transition.turn.js | 2 +- js/jquery.mobile.vmouse.js | 2 +- js/jquery.mobile.widget.js | 2 +- js/jquery.ui.widget.js | 2 +- 41 files changed, 43 insertions(+), 41 deletions(-) diff --git a/js/jquery.mobile.buttonMarkup.js b/js/jquery.mobile.buttonMarkup.js index 3f910559..52d86753 100755 --- a/js/jquery.mobile.buttonMarkup.js +++ b/js/jquery.mobile.buttonMarkup.js @@ -2,7 +2,7 @@ //>>description: For making button-like links. //>>label: Buttons -define( [ "jquery.mobile.core", "jquery.mobile.vmouse" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.vmouse" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); ( function( $, undefined ) { diff --git a/js/jquery.mobile.collapsible.js b/js/jquery.mobile.collapsible.js index 59aaa965..ac72d8d1 100644 --- a/js/jquery.mobile.collapsible.js +++ b/js/jquery.mobile.collapsible.js @@ -1,7 +1,7 @@ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); //>>description: Creates collapsible content areas. //>>label: Collapsibles -define( [ "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.collapsibleSet.js b/js/jquery.mobile.collapsibleSet.js index 76bf3db9..5a4ef993 100644 --- a/js/jquery.mobile.collapsibleSet.js +++ b/js/jquery.mobile.collapsibleSet.js @@ -2,7 +2,7 @@ //>>description: For creating grouped collapsible content areas. //>>label: Collapsible Sets -define( [ "jquery.mobile.widget", "jquery.mobile.collapsible" ], function() { +define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.collapsible" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.controlGroup.js b/js/jquery.mobile.controlGroup.js index 5f40f63f..7a4a22a3 100644 --- a/js/jquery.mobile.controlGroup.js +++ b/js/jquery.mobile.controlGroup.js @@ -2,7 +2,7 @@ //>>description: Corner-rounding for groups of buttons, checks, radios, etc //>>label: Controlgroups -define( [ "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.core.js b/js/jquery.mobile.core.js index f33e392a..13a5f2c5 100644 --- a/js/jquery.mobile.core.js +++ b/js/jquery.mobile.core.js @@ -2,7 +2,7 @@ //>>description: The base file for jQM //>>label: Core -define( [ "jquery.mobile.widget" ], function() { +define( [ "jquery", "jquery.mobile.widget" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.degradeInputs.js b/js/jquery.mobile.degradeInputs.js index 8d5041cb..78dc8371 100644 --- a/js/jquery.mobile.degradeInputs.js +++ b/js/jquery.mobile.degradeInputs.js @@ -2,7 +2,7 @@ //>>description: Degrades inputs to another type after custom enhancements are made. //>>label: Degrade Inputs -define( [ "jquery.mobile.page" ], function() { +define( [ "jquery", "jquery.mobile.page" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.dialog.js b/js/jquery.mobile.dialog.js index fbd0f734..123288e6 100644 --- a/js/jquery.mobile.dialog.js +++ b/js/jquery.mobile.dialog.js @@ -2,7 +2,7 @@ //>>description: Degrades inputs to another type after custom enhancements are made. //>>label: Dialog-style Pages -define( [ "jquery.mobile.widget" ], function() { +define( [ "jquery", "jquery.mobile.widget" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.event.js b/js/jquery.mobile.event.js index fb9c8881..93903700 100644 --- a/js/jquery.mobile.event.js +++ b/js/jquery.mobile.event.js @@ -1,7 +1,7 @@ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); //>>description: Custom events and shortcuts. //>>label: Events -define( [ "jquery.mobile.core", "jquery.mobile.media", "jquery.mobile.support", "jquery.mobile.vmouse" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.media", "jquery.mobile.support", "jquery.mobile.vmouse" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.fieldContain.js b/js/jquery.mobile.fieldContain.js index 989751ba..c8a0fdd7 100644 --- a/js/jquery.mobile.fieldContain.js +++ b/js/jquery.mobile.fieldContain.js @@ -2,7 +2,7 @@ //>>description: Simple class additions to make form row separators //>>label: Fieldcontains -define(function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.fixHeaderFooter.js b/js/jquery.mobile.fixHeaderFooter.js index b3a777f4..7bdb4fa8 100644 --- a/js/jquery.mobile.fixHeaderFooter.js +++ b/js/jquery.mobile.fixHeaderFooter.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.core", "jquery.mobile.vmouse" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.vmouse" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.fixHeaderFooter.native.js b/js/jquery.mobile.fixHeaderFooter.native.js index a94c61a7..0c10eda4 100644 --- a/js/jquery.mobile.fixHeaderFooter.native.js +++ b/js/jquery.mobile.fixHeaderFooter.native.js @@ -2,7 +2,7 @@ //>>description: Behavior for "fixed" headers,footers, and scrolling inner content //>>label: Fixed Toolbars -define( [ "jquery.mobile.core" ], function() { +define( [ "jquery", "jquery.mobile.core" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.forms.button.js b/js/jquery.mobile.forms.button.js index a418fabf..529586bb 100644 --- a/js/jquery.mobile.forms.button.js +++ b/js/jquery.mobile.forms.button.js @@ -2,7 +2,7 @@ //>>description: Form Buttons //>>label: links that proxy to native input/buttons -define( [ "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.forms.checkboxradio.js b/js/jquery.mobile.forms.checkboxradio.js index 76512c71..7fd71075 100644 --- a/js/jquery.mobile.forms.checkboxradio.js +++ b/js/jquery.mobile.forms.checkboxradio.js @@ -6,7 +6,7 @@ //>>description: Consistent styling for checkboxes/radio buttons. //>>label: Checkboxes/Radio Buttons -define( [ "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.forms.select.custom.js b/js/jquery.mobile.forms.select.custom.js index ab01687a..6ea56b51 100644 --- a/js/jquery.mobile.forms.select.custom.js +++ b/js/jquery.mobile.forms.select.custom.js @@ -7,6 +7,7 @@ //>>label: Custom Selects define( [ + "jquery", "jquery.mobile.buttonMarkup", "jquery.mobile.core", "jquery.mobile.dialog", @@ -14,7 +15,7 @@ define( [ "jquery.mobile.listview", "jquery.mobile.page", // NOTE expects ui content in the defined page, see selector for menuPageContent definition - "jquery.mobile.page.sections" ], function() { + "jquery.mobile.page.sections" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { var extendSelect = function( widget ){ diff --git a/js/jquery.mobile.forms.select.js b/js/jquery.mobile.forms.select.js index e7798a6c..feed45b2 100644 --- a/js/jquery.mobile.forms.select.js +++ b/js/jquery.mobile.forms.select.js @@ -2,7 +2,7 @@ //>>description: Consistent styling for native select menus. //>>label: Enhanced Native Selects -define( [ "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.forms.slider.js b/js/jquery.mobile.forms.slider.js index fc61c1b8..76ca9d59 100644 --- a/js/jquery.mobile.forms.slider.js +++ b/js/jquery.mobile.forms.slider.js @@ -2,7 +2,7 @@ //>>description: Slider form widget //>>label: Slider -define( [ "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.forms.textinput", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.forms.textinput", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); ( function( $, undefined ) { diff --git a/js/jquery.mobile.forms.textinput.js b/js/jquery.mobile.forms.textinput.js index 0fcd43df..bca87149 100644 --- a/js/jquery.mobile.forms.textinput.js +++ b/js/jquery.mobile.forms.textinput.js @@ -2,7 +2,7 @@ //>>description: Enhances and consistently styles text inputs. //>>label: Text Inputs -define( [ "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.degradeInputs", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.widget", "jquery.mobile.degradeInputs", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.grid.js b/js/jquery.mobile.grid.js index 2b6155c2..75695212 100644 --- a/js/jquery.mobile.grid.js +++ b/js/jquery.mobile.grid.js @@ -2,7 +2,7 @@ //>>description: Applies classes for grid styling. //>>label: CSS Grid Tool -define(function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.init.js b/js/jquery.mobile.init.js index 53e45ad3..f4dcb347 100644 --- a/js/jquery.mobile.init.js +++ b/js/jquery.mobile.init.js @@ -2,7 +2,7 @@ //>>description: Applies classes for grid styling. //>>label: CSS Grid Tool -define( [ "jquery.mobile.core", "jquery.mobile.navigation", "jquery.mobile.navigation.pushstate" ], function() { +define( [ "jquery", "jquery.mobile.core", "jquery.mobile.navigation", "jquery.mobile.navigation.pushstate" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); ( function( $, window, undefined ) { var $html = $( "html" ), diff --git a/js/jquery.mobile.links.js b/js/jquery.mobile.links.js index 586a80eb..a4f1105e 100644 --- a/js/jquery.mobile.links.js +++ b/js/jquery.mobile.links.js @@ -2,7 +2,7 @@ //>>description: Simple class additions for links. //>>label: Link Classes -define( function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.listview.filter.js b/js/jquery.mobile.listview.filter.js index bef34dba..0e2dec6d 100755 --- a/js/jquery.mobile.listview.filter.js +++ b/js/jquery.mobile.listview.filter.js @@ -2,7 +2,7 @@ //>>description: Adds a filtering textfield to listviews //>>label: Listview Filter -define( [ "jquery.mobile.listview", "jquery.mobile.forms.textinput" ], function() { +define( [ "jquery", "jquery.mobile.listview", "jquery.mobile.forms.textinput" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.listview.js b/js/jquery.mobile.listview.js index c9e7e6a5..4d06fc7f 100644 --- a/js/jquery.mobile.listview.js +++ b/js/jquery.mobile.listview.js @@ -2,7 +2,7 @@ //>>description: Adds a filtering textfield to listviews //>>label: Listview Filter -define( [ "jquery.mobile.widget", "jquery.mobile.buttonMarkup", "jquery.mobile.page", "jquery.mobile.page.sections" ], function() { +define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup", "jquery.mobile.page", "jquery.mobile.page.sections" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.media.js b/js/jquery.mobile.media.js index 6ce475cd..943608ba 100644 --- a/js/jquery.mobile.media.js +++ b/js/jquery.mobile.media.js @@ -2,7 +2,7 @@ //>>description: A workaround for browsers without window.matchMedia //>>label: matchMedia Polyfill -define( [ "jquery.mobile.core" ], function() { +define( [ "jquery", "jquery.mobile.core" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.navbar.js b/js/jquery.mobile.navbar.js index 135c1fe6..ff95a6eb 100644 --- a/js/jquery.mobile.navbar.js +++ b/js/jquery.mobile.navbar.js @@ -2,7 +2,7 @@ //>>description: Formats groups of links as navigation bars. //>>label: Navigation Bars -define( [ "jquery.mobile.widget", "jquery.mobile.buttonMarkup", "jquery.mobile.grid" ], function() { +define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup", "jquery.mobile.grid" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.navigation.js b/js/jquery.mobile.navigation.js index 76f30c8a..99d6ff42 100755 --- a/js/jquery.mobile.navigation.js +++ b/js/jquery.mobile.navigation.js @@ -3,10 +3,11 @@ //>>label: Navigation Bars define( [ + "jquery", "jquery.mobile.core", "jquery.mobile.event", "jquery.mobile.hashchange", - "jquery.mobile.page" ], function() { + "jquery.mobile.page" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); ( function( $, undefined ) { diff --git a/js/jquery.mobile.navigation.pushstate.js b/js/jquery.mobile.navigation.pushstate.js index 942d1065..1374591e 100644 --- a/js/jquery.mobile.navigation.pushstate.js +++ b/js/jquery.mobile.navigation.pushstate.js @@ -2,7 +2,7 @@ //>>description: history.pushState support, layered on top of hashchange. //>>label: Pushstate Support -define( [ "jquery.mobile.navigation" ], function() { +define( [ "jquery", "jquery.mobile.navigation" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); ( function( $, window ) { // For now, let's Monkeypatch this onto the end of $.mobile._registerInternalEvents diff --git a/js/jquery.mobile.nojs.js b/js/jquery.mobile.nojs.js index 223d76f2..32ab35fd 100644 --- a/js/jquery.mobile.nojs.js +++ b/js/jquery.mobile.nojs.js @@ -2,7 +2,7 @@ //>>description: Adds class to make elements hidden to A grade browsers //>>label: “nojs” Classes -define(function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.page.js b/js/jquery.mobile.page.js index 3aa9f6b1..3d5c4d78 100644 --- a/js/jquery.mobile.page.js +++ b/js/jquery.mobile.page.js @@ -2,7 +2,7 @@ //>>description: Basic page formatting. //>>label: Pages -define( [ "jquery.mobile.widget" ], function() { +define( [ "jquery", "jquery.mobile.widget" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.page.sections.js b/js/jquery.mobile.page.sections.js index b4b61196..e3611659 100644 --- a/js/jquery.mobile.page.sections.js +++ b/js/jquery.mobile.page.sections.js @@ -2,7 +2,7 @@ //>>description: Theming and layout of headers, footers, and content areas //>>label: Page Sections -define( [ "jquery.mobile.page", "jquery.mobile.core", "jquery.mobile.buttonMarkup" ], function() { +define( [ "jquery", "jquery.mobile.page", "jquery.mobile.core", "jquery.mobile.buttonMarkup" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.support.js b/js/jquery.mobile.support.js index 89e496f7..26073ff5 100644 --- a/js/jquery.mobile.support.js +++ b/js/jquery.mobile.support.js @@ -4,7 +4,7 @@ // For test purposes we can't use anonymous module here otherwise // the tests will throw http://requirejs.org/docs/errors.html#mismatch -define( "jquery.mobile.support", [ "jquery.mobile.media" ], function() { +define( "jquery.mobile.support", [ "jquery", "jquery.mobile.media" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.mobile.transition.flip.js b/js/jquery.mobile.transition.flip.js index 578e413d..94854ba0 100644 --- a/js/jquery.mobile.transition.flip.js +++ b/js/jquery.mobile.transition.flip.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.flow.js b/js/jquery.mobile.transition.flow.js index 815c90e9..e3e132cf 100644 --- a/js/jquery.mobile.transition.flow.js +++ b/js/jquery.mobile.transition.flow.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.js b/js/jquery.mobile.transition.js index 12876cfa..f0285bf3 100644 --- a/js/jquery.mobile.transition.js +++ b/js/jquery.mobile.transition.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.core" ], function() { +define( [ "jquery", "jquery.mobile.core" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.pop.js b/js/jquery.mobile.transition.pop.js index 92541a36..aa17f62c 100644 --- a/js/jquery.mobile.transition.pop.js +++ b/js/jquery.mobile.transition.pop.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.slide.js b/js/jquery.mobile.transition.slide.js index 84159583..ff0e153a 100644 --- a/js/jquery.mobile.transition.slide.js +++ b/js/jquery.mobile.transition.slide.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.slidedown.js b/js/jquery.mobile.transition.slidedown.js index 64cc3980..cd1da963 100644 --- a/js/jquery.mobile.transition.slidedown.js +++ b/js/jquery.mobile.transition.slidedown.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.slideup.js b/js/jquery.mobile.transition.slideup.js index 6c844c83..128d8245 100644 --- a/js/jquery.mobile.transition.slideup.js +++ b/js/jquery.mobile.transition.slideup.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.transition.turn.js b/js/jquery.mobile.transition.turn.js index 51fc9014..59d96b31 100644 --- a/js/jquery.mobile.transition.turn.js +++ b/js/jquery.mobile.transition.turn.js @@ -3,7 +3,7 @@ */ //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude); -define( [ "jquery.mobile.transition" ], function() { +define( [ "jquery", "jquery.mobile.transition" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, undefined ) { diff --git a/js/jquery.mobile.vmouse.js b/js/jquery.mobile.vmouse.js index 265fac58..836c0170 100644 --- a/js/jquery.mobile.vmouse.js +++ b/js/jquery.mobile.vmouse.js @@ -18,7 +18,7 @@ //>>description: Normalizes touch/mouse events. //>>label: Virtual Mouse Bindings -define(function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, window, document, undefined ) { diff --git a/js/jquery.mobile.widget.js b/js/jquery.mobile.widget.js index 7be8e3b7..bb3dfd23 100644 --- a/js/jquery.mobile.widget.js +++ b/js/jquery.mobile.widget.js @@ -2,7 +2,7 @@ //>>description: Widget factory extentions for mobile. //>>label: Widget Factory Extensions -define( [ "jquery.ui.widget" ], function() { +define( [ "jquery", "jquery.ui.widget" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) { diff --git a/js/jquery.ui.widget.js b/js/jquery.ui.widget.js index 438420a6..23ebae69 100644 --- a/js/jquery.ui.widget.js +++ b/js/jquery.ui.widget.js @@ -12,7 +12,7 @@ //>>description: jQuery UI Widget Factory. //>>label: Widget Factory -define(function() { +define( [ "jquery" ], function( $ ) { //>>excludeEnd("jqmBuildExclude"); (function( $, undefined ) {