jquery-mobile/js/jquery.mobile.page.js

25 lines
437 B
JavaScript
Raw Normal View History

2010-11-10 00:55:52 +00:00
/*
* jQuery Mobile Framework : "page" plugin
* Copyright (c) jQuery Project
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
2010-11-10 00:55:52 +00:00
*/
(function( $, undefined ) {
$.widget( "mobile.page", $.mobile.widget, {
options: {
theme: "c",
2011-07-28 19:53:27 +00:00
domCache: false
},
_create: function() {
this._trigger( "beforecreate" );
this.element.addClass( "ui-page ui-body-" + this.options.theme );
}
});
})( jQuery );