mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
26 lines
469 B
JavaScript
26 lines
469 B
JavaScript
/*
|
|
* jQuery Mobile Framework : "page" plugin
|
|
* Copyright (c) jQuery Project
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
* http://jquery.org/license
|
|
*/
|
|
|
|
(function( $, undefined ) {
|
|
|
|
$.widget( "mobile.page", $.mobile.widget, {
|
|
options: {
|
|
theme: "c",
|
|
domCache: false
|
|
},
|
|
|
|
_create: function() {
|
|
|
|
this._trigger( "beforecreate" );
|
|
|
|
this.element
|
|
.attr( "tabindex", "0" )
|
|
.addClass( "ui-page ui-body-" + this.options.theme );
|
|
}
|
|
});
|
|
|
|
})( jQuery );
|