jquery-mobile/js/jquery.mobile.page.js
2011-09-06 12:58:14 -04:00

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 );