2010-11-10 00:55:52 +00:00
|
|
|
/*
|
|
|
|
|
* jQuery Mobile Framework : "page" plugin
|
|
|
|
|
* Copyright (c) jQuery Project
|
2010-11-20 03:47:47 +00:00
|
|
|
* Dual licensed under the MIT or GPL Version 2 licenses.
|
|
|
|
|
* http://jquery.org/license
|
2010-11-10 00:55:52 +00:00
|
|
|
*/
|
2011-06-29 13:27:58 +00:00
|
|
|
|
|
|
|
|
(function( $, undefined ) {
|
2010-10-09 18:34:21 +00:00
|
|
|
|
2010-11-11 15:49:15 +00:00
|
|
|
$.widget( "mobile.page", $.mobile.widget, {
|
2010-11-06 16:30:40 +00:00
|
|
|
options: {
|
2011-07-25 13:16:09 +00:00
|
|
|
theme: "c",
|
2011-07-28 19:53:27 +00:00
|
|
|
domCache: false
|
2010-11-06 16:30:40 +00:00
|
|
|
},
|
2010-12-08 08:12:05 +00:00
|
|
|
|
2010-10-09 18:34:21 +00:00
|
|
|
_create: function() {
|
2010-11-06 16:30:40 +00:00
|
|
|
var $elem = this.element,
|
2011-03-14 15:21:59 +00:00
|
|
|
o = this.options;
|
2010-12-08 08:12:05 +00:00
|
|
|
|
2010-10-09 18:45:16 +00:00
|
|
|
if ( this._trigger( "beforeCreate" ) === false ) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2011-07-28 19:53:27 +00:00
|
|
|
|
|
|
|
|
$elem.addClass( "ui-page ui-body-" + o.theme );
|
2010-10-09 18:34:21 +00:00
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})( jQuery );
|