mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-17 06:20:26 +00:00
159 lines
3.9 KiB
JavaScript
159 lines
3.9 KiB
JavaScript
/*
|
|
* jQuery Mobile Framework : "buttons" plugin - for making button-like links
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
( function( $, undefined ) {
|
|
|
|
$.fn.buttonMarkup = function( options ) {
|
|
return this.each( function() {
|
|
var el = $( this ),
|
|
o = $.extend( {}, $.fn.buttonMarkup.defaults, {
|
|
icon: el.jqmData( "icon" ),
|
|
iconpos: el.jqmData( "iconpos" ),
|
|
theme: el.jqmData( "theme" ),
|
|
inline: el.jqmData( "inline" ),
|
|
shadow: el.jqmData( "shadow" ),
|
|
corners: el.jqmData( "corners" ),
|
|
iconshadow: el.jqmData( "iconshadow" )
|
|
}, options ),
|
|
|
|
// Classes Defined
|
|
innerClass = "ui-btn-inner",
|
|
buttonClass, iconClass,
|
|
wrap;
|
|
|
|
if ( attachEvents ) {
|
|
attachEvents();
|
|
}
|
|
|
|
// if not, try to find closest theme container
|
|
if ( !o.theme ) {
|
|
o.theme = $.mobile.getInheritedTheme( el, "c" );
|
|
}
|
|
|
|
buttonClass = "ui-btn ui-btn-up-" + o.theme;
|
|
|
|
if ( o.inline ) {
|
|
buttonClass += " ui-btn-inline";
|
|
}
|
|
|
|
if ( o.icon ) {
|
|
o.icon = "ui-icon-" + o.icon;
|
|
o.iconpos = o.iconpos || "left";
|
|
|
|
iconClass = "ui-icon " + o.icon;
|
|
|
|
if ( o.iconshadow ) {
|
|
iconClass += " ui-icon-shadow";
|
|
}
|
|
}
|
|
|
|
if ( o.iconpos ) {
|
|
buttonClass += " ui-btn-icon-" + o.iconpos;
|
|
|
|
if ( o.iconpos == "notext" && !el.attr( "title" ) ) {
|
|
el.attr( "title", el.getEncodedText() );
|
|
}
|
|
}
|
|
|
|
if ( o.corners ) {
|
|
buttonClass += " ui-btn-corner-all";
|
|
innerClass += " ui-btn-corner-all";
|
|
}
|
|
|
|
if ( o.shadow ) {
|
|
buttonClass += " ui-shadow";
|
|
}
|
|
|
|
el.attr( "data-" + $.mobile.ns + "theme", o.theme )
|
|
.addClass( buttonClass );
|
|
|
|
wrap = ( "<D class='" + innerClass + "' aria-hidden='true'><D class='ui-btn-text'></D>" +
|
|
( o.icon ? "<span class='" + iconClass + "'></span>" : "" ) +
|
|
"</D>" ).replace( /D/g, o.wrapperEls );
|
|
|
|
el.wrapInner( wrap );
|
|
});
|
|
};
|
|
|
|
$.fn.buttonMarkup.defaults = {
|
|
corners: true,
|
|
shadow: true,
|
|
iconshadow: true,
|
|
inline: false,
|
|
wrapperEls: "span"
|
|
};
|
|
|
|
function closestEnabledButton( element ) {
|
|
var cname;
|
|
|
|
while ( element ) {
|
|
cname = element.className && element.className.split(' ');
|
|
if ( cname && cname.indexOf( "ui-btn" ) > -1 && cname.indexOf( "ui-disabled" ) < 0 ) {
|
|
break;
|
|
}
|
|
element = element.parentNode;
|
|
}
|
|
|
|
return element;
|
|
}
|
|
|
|
var attachEvents = function() {
|
|
$( document ).bind( {
|
|
"vmousedown": function( event ) {
|
|
var btn = closestEnabledButton( event.target ),
|
|
$btn, theme;
|
|
|
|
if ( btn ) {
|
|
$btn = $( btn );
|
|
theme = $btn.attr( "data-" + $.mobile.ns + "theme" );
|
|
$btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-down-" + theme );
|
|
}
|
|
},
|
|
"vmousecancel vmouseup": function( event ) {
|
|
var btn = closestEnabledButton( event.target ),
|
|
$btn, theme;
|
|
|
|
if ( btn ) {
|
|
$btn = $( btn );
|
|
theme = $btn.attr( "data-" + $.mobile.ns + "theme" );
|
|
$btn.removeClass( "ui-btn-down-" + theme ).addClass( "ui-btn-up-" + theme );
|
|
}
|
|
},
|
|
"vmouseover focus": function( event ) {
|
|
var btn = closestEnabledButton( event.target ),
|
|
$btn, theme;
|
|
|
|
if ( btn ) {
|
|
$btn = $( btn );
|
|
theme = $btn.attr( "data-" + $.mobile.ns + "theme" );
|
|
$btn.removeClass( "ui-btn-up-" + theme ).addClass( "ui-btn-hover-" + theme );
|
|
}
|
|
},
|
|
"vmouseout blur": function( event ) {
|
|
var btn = closestEnabledButton( event.target ),
|
|
$btn, theme;
|
|
|
|
if ( btn ) {
|
|
$btn = $( btn );
|
|
theme = $btn.attr( "data-" + $.mobile.ns + "theme" );
|
|
$btn.removeClass( "ui-btn-hover-" + theme ).addClass( "ui-btn-up-" + theme );
|
|
}
|
|
}
|
|
});
|
|
|
|
attachEvents = null;
|
|
};
|
|
|
|
//links in bars, or those with data-role become buttons
|
|
//auto self-init widgets
|
|
$( document ).bind( "pagecreate create", function( e ){
|
|
|
|
$( ":jqmData(role='button'), .ui-bar > a, .ui-header > a, .ui-footer > a, .ui-bar > :jqmData(role='controlgroup') > a", e.target )
|
|
.not( ".ui-btn, :jqmData(role='none'), :jqmData(role='nojs')" )
|
|
.buttonMarkup();
|
|
});
|
|
|
|
})( jQuery );
|