mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
Added dep on jquery.mobile.buttonMarkup
This commit is contained in:
parent
00e62041ed
commit
6b7e83effa
9 changed files with 9 additions and 9 deletions
|
|
@ -2,7 +2,7 @@
|
|||
* "collapsible" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.collapsible", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "button" plugin - links that proxy to native input/buttons
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.button", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "checkboxradio" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.checkboxradio", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* custom "selectmenu" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.forms.select" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.forms.select", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
var extendSelect = function( widget ){
|
||||
|
||||
var select = widget.select,
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "selectmenu" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.selectmenu", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "slider" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.slider", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "textinput" plugin for text inputs, textareas
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.textinput", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "listview" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
//Keeps track of the number of lists per page UID
|
||||
//This allows support for multiple nested list in the same page
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* "navbar" plugin
|
||||
*/
|
||||
|
||||
define( [ "jquery", "jquery.mobile.widget" ], function( $, undefined ) {
|
||||
define( [ "jquery", "jquery.mobile.widget", "jquery.mobile.buttonMarkup" ], function( $, undefined ) {
|
||||
|
||||
$.widget( "mobile.navbar", $.mobile.widget, {
|
||||
options: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue