Export 0.1.63
[platform/framework/web/web-ui-fw.git] / src / widgets / pagelayout / js / jquery.mobile.tizen.pagelayout.js
1 /* ***************************************************************************
2  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20  * DEALINGS IN THE SOFTWARE.
21  * ***************************************************************************
22  *
23  *      Author: Jinhyuk Jun <jinhyuk.jun@samsung.com>
24  */
25
26 (function ( $, undefined ) {
27
28         $.widget( "mobile.pagelayout", $.mobile.widget, {
29                 options: {
30                         visibleOnPageShow: true,
31                         disablePageZoom: true,
32                         transition: "slide", //can be none, fade, slide (slide maps to slideup or slidedown)
33                         fullscreen: false,
34                         tapToggle: true,
35                         tapToggleBlacklist: "a, input, select, textarea, .ui-header-fixed, .ui-footer-fixed",
36                         hideDuringFocus: "input, textarea, select",
37                         updatePagePadding: true,
38                         trackPersistentToolbars: true,
39                         // Browser detection! Weeee, here we go...
40                         // Unfortunately, position:fixed is costly, not to mention probably impossible, to feature-detect accurately.
41                         // Some tests exist, but they currently return false results in critical devices and browsers, which could lead to a broken experience.
42                         // Testing fixed positioning is also pretty obtrusive to page load, requiring injected elements and scrolling the window
43                         // The following function serves to rule out some popular browsers with known fixed-positioning issues
44                         // This is a plugin option like any other, so feel free to improve or overwrite it
45                         supportBlacklist: function () {
46                                 var w = window,
47                                         ua = navigator.userAgent,
48                                         platform = navigator.platform,
49                                         // Rendering engine is Webkit, and capture major version
50                                         wkmatch = ua.match( /AppleWebKit\/([0-9]+)/ ),
51                                         wkversion = !!wkmatch && wkmatch[ 1 ],
52                                         ffmatch = ua.match( /Fennec\/([0-9]+)/ ),
53                                         ffversion = !!ffmatch && ffmatch[ 1 ],
54                                         operammobilematch = ua.match( /Opera Mobi\/([0-9]+)/ ),
55                                         omversion = !!operammobilematch && operammobilematch[ 1 ];
56
57                                 if (
58                                                 // iOS 4.3 and older : Platform is iPhone/Pad/Touch and Webkit version is less than 534 (ios5)
59                                                 ( ( platform.indexOf( "iPhone" ) > -1 || platform.indexOf( "iPad" ) > -1  || platform.indexOf( "iPod" ) > -1 ) && wkversion && wkversion < 534 )
60                                                 ||
61                                                 // Opera Mini
62                                                 ( w.operamini && ({}).toString.call( w.operamini ) === "[object OperaMini]" )
63                                                 ||
64                                                 ( operammobilematch && omversion < 7458 )
65                                                 ||
66                                                 //Android lte 2.1: Platform is Android and Webkit version is less than 533 (Android 2.2)
67                                                 ( ua.indexOf( "Android" ) > -1 && wkversion && wkversion < 533 )
68                                                 ||
69                                                 // Firefox Mobile before 6.0 -
70                                                 ( ffversion && ffversion < 6 )
71                                                 ||
72                                                 // WebOS less than 3
73                                                 ( "palmGetResource" in window && wkversion && wkversion < 534 )
74                                                 ||
75                                                 // MeeGo
76                                                 ( ua.indexOf( "MeeGo" ) > -1 && ua.indexOf( "NokiaBrowser/8.5.0" ) > -1 )
77                                 ) {
78                                         return true;
79                                 }
80
81                                 return false;
82                         },
83                         initSelector: ":jqmData(role='content')"
84                 },
85
86                 _create: function () {
87
88                         var self = this,
89                                 o = self.options,
90                                 $el = self.element;
91
92                         // Feature detecting support for
93                         if ( o.supportBlacklist() ) {
94                                 self.destroy();
95                                 return;
96                         }
97
98                         self._addFixedClass();
99                         self._addTransitionClass();
100                         self._bindPageEvents();
101
102                         // only content
103                         self._bindContentControlEvents();
104                 },
105
106                 /* add minimum fixed css style to bar(header/footer) and content
107                 *  it need to update when core source modified(jquery.mobile.page.section.js)
108                 *  modified from core source cuz initSelector different */
109                 _addFixedClass: function () {
110                         var self = this,
111                                 o = self.options,
112                                 $el = self.element,
113                                 $elHeader = $el.siblings( ":jqmData(role='header')" ),
114                                 $elFooter = $el.siblings( ":jqmData(role='footer')" ),
115                                 $elPage = $el.closest(".ui-page");
116
117                         $elHeader.addClass( "ui-header-fixed" );
118                         $elFooter.addClass( "ui-footer-fixed" );
119
120                         // "fullscreen" overlay positioning
121                         if ( o.fullscreen ) {
122                                 $elHeader.addClass( "ui-header-fullscreen" );
123                                 $elFooter.addClass( "ui-footer-fullscreen" );
124                                 $elPage
125                                         .addClass( "ui-page-header-fullscreen" )
126                                         .addClass( "ui-page-footer-fullscreen" );
127                         } else {
128                         // If not fullscreen, add class to page to set top or bottom padding
129                                 $elPage.addClass( "ui-page-header-fixed" )
130                                         .addClass( "ui-page-footer-fixed" );
131                         }
132                 },
133
134                 /* original core source(jquery.mobile.fixedToolbar.js)
135                 * never changed */
136                 _addTransitionClass: function () {
137                         var tclass = this.options.transition;
138
139                         if ( tclass && tclass !== "none" ) {
140                                 // use appropriate slide for header or footer
141                                 if ( tclass === "slide" ) {
142                                         tclass = this.element.is( ".ui-header" ) ? "slidedown" : "slideup";
143                                 }
144
145                                 this.element.addClass( tclass );
146                         }
147                 },
148
149
150                 /* Set default page positon
151                 * 1. add title style to header
152                 * 2. Set default header/footer position */
153                 setHeaderFooter: function ( event ) {
154                         var $elPage = $( event.target ),
155                                 $elHeader = $elPage.find( ":jqmData(role='header')" ).length ? $elPage.find( ":jqmData(role='header')") : $elPage.siblings( ":jqmData(role='header')"),
156                                 $elFieldcontain = $elHeader.find( ":jqmData(role='fieldcontain')" ),
157                                 $elControlgroup = $elHeader.find( ":jqmData(role='controlgroup')" ),
158                                 $elContent = $elPage.find( ".ui-content" ),
159                                 next_id,
160                                 $elFooter,
161                                 $elFooterGroup,
162                                 gLength,
163                                 footerButton,
164                                 tStyle = "normal",
165                                 headerBtnNum;
166
167                         if ( $elFieldcontain.length != 0 || $elControlgroup.length != 0 ) {
168                                 tStyle = "extended";
169                         }
170
171                         if ( $elHeader.jqmData("position") == "fixed" || $.tizen.frameworkData.theme.match(/tizen/) || $elHeader.css("position") == "fixed" ) {
172                                 $elHeader
173                                         .css( "position", "fixed" )
174                                         .css( "top", "0px" );
175
176                                 if ( $elHeader.is(".ui-title-controlbar-multiline") ) {
177                                         $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-multi-controlbar-height" );
178                                 } else {
179                                         if ( $elHeader.length ) {
180                                                 $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-" + tStyle + "-height" );
181                                         } else {
182                                                 $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-no-height" );
183                                         }
184                                 }
185                         }
186
187                         /* set Title style */
188                         /* newTheme */
189                         if ( $elHeader.find("span.ui-title-text-sub").length ) {
190                                 $elHeader.addClass( "ui-title-multiline");
191                         }
192
193
194                         if ( $elHeader.children().is(".ui-option-header") ) {
195                                 $elContent.removeClass( "ui-title-content-" + tStyle + "-height" );
196                                 if ( $.tizen.optionheader.prototype.options.collapseOnInit == true ) {
197                                         $elContent.addClass( "ui-title-content-option-header-collapsed-1line-height" );
198                                 } else {
199                                         $elContent.addClass( "ui-title-content-option-header-expanded-1line-height" );
200                                 }
201                         } else if ( $elHeader.find("input").attr("type") === "search" || $elHeader.find("input").attr("type") === "tizen-search" || $elHeader.find("input").jqmData("type") == "search" || $elHeader.find("input").jqmData("type") == "tizen-search" ) {
202                                 $elContent.removeClass( "ui-title-content-" + tStyle + "-height" ).addClass( "ui-title-content-search" );
203                         }
204
205                         headerBtnNum = $elHeader.children("a").length;
206                         if ( headerBtnNum > 0  || $elHeader.children().find(".ui-radio").length != 0 ) {
207                                 if ( tStyle != "normal" ) {
208                                         gLength = $elFieldcontain.length ? $elFieldcontain.find( ".ui-radio" ).length : $elControlgroup.find( "a" ).length;
209
210                                         $elHeader.addClass( "ui-title-extended-height" );
211
212                                         $elFieldcontain.length ? $elFieldcontain.find( ".ui-controlgroup" ).addClass( "ui-title-extended-controlgroup" ).addClass( "ui-extended-controlgroup" ) : $elControlgroup.addClass( "ui-title-extended-button-controlgroup" ).addClass( "ui-extended-controlgroup" );
213
214                                         $elFieldcontain.length ? $elFieldcontain.addClass( "ui-title-extended-segment-style" ) : $elControlgroup.addClass( "ui-title-extended-segment-style" );
215
216                                         if ( gLength == 2 || gLength == 3 || gLength == 4 ) {
217                                                 $elFieldcontain.length ? $elFieldcontain.addClass( "ui-title-extended-controlgroup-" + gLength + "btn" ) : $elControlgroup.addClass( "ui-title-extended-controlgroup-" + gLength + "btn" );
218                                         }
219                                 }
220                                 $elContent.addClass( "ui-title-content-" + tStyle + "-height" );
221                         }
222
223                         // divide content mode scrollview and non-scrollview
224                         // recalculate content area when resize callback occur
225                         if ( $.support.scrollview ) {
226                                 if ( $elHeader.css( "position" ) != "fixed" ) {
227                                         $elHeader.css( "position", "fixed" );
228                                 }
229
230                         } else {
231                                 if ( $elHeader.css("position") != "fixed" ) {
232                                         $elHeader.css( "position", "relative" );
233                                 }
234                         }
235
236                         $elFooter = $( document ).find( ":jqmData(role='footer')" );
237
238                         if ( $elFooter.find(".ui-navbar").is(".ui-controlbar-s") ) {
239                                 $elFooter
240                                         .css( "bottom", 0 )
241                                         .show();
242                         }
243
244                         if ( $elFooter.children().find(".ui-radio").length != 0 ) {
245                                 $elFooterGroup = $elFooter.find( ":jqmData(role='fieldcontain')" );
246                                 gLength = $elFooterGroup.find( ".ui-radio" ).length;
247
248
249                                 if ( $elFooterGroup.find( "div" ).is( ".ui-controlgroup-label" ) ) {
250                                         $elFooterGroup.find( "div.ui-controlgroup-label" ).remove();
251                                 }
252
253                                 $elFooterGroup.find( ".ui-controlgroup" )
254                                         .addClass( "ui-extended-controlgroup" )
255                                         .addClass( "ui-footer-extended-controlgroup" )
256                                         .css( "display", "inline" );
257
258                                         /* Groupcontrol cannot initialize inline property at first page */
259                                 $elFooterGroup.addClass( "ui-footer-extended-controlgroup-" + gLength + "btn" );
260                         }
261
262                         footerButton = $elFooter.children( "a" );
263                         footerButton.each( function ( i ) {
264                                 if ( footerButton.eq( i ).is(".ui-btn") && !footerButton.eq( i ).is(".ui-btn-back") ) {
265                                         footerButton.eq( i )
266                                                 .removeClass( "ui-btn-left" )
267                                                 .addClass( "ui-btn-footer-right" );
268                                 }
269                         });
270
271                         if ( $elFooter.is(".ui-footer-fixed") ) {
272                                 $elFooter.css( "bottom", 0 );
273                         }
274
275                         $elFooter.show();
276
277                         /* Header position fix(remove transition) */
278                         next_id = $( event.target ).attr( "id" );
279
280                         $( "#" + next_id ).find( ":jqmData(role='header')" )
281                                 .removeClass( "fade in out" )
282                                 .appendTo( $.mobile.pageContainer );
283                 },
284
285                 _bindPageEvents: function () {
286                         var self = this,
287                                 o = self.options,
288                                 $el = self.element;
289
290                         //page event bindings
291                         // Fixed toolbars require page zoom to be disabled, otherwise usability issues crop up
292                         // This method is meant to disable zoom while a fixed-positioned toolbar page is visible
293                         $el.closest( ".ui-page" )
294                                 .bind( "pagebeforeshow", function ( event ) {
295                                         if ( o.disablePageZoom ) {
296                                                 $.mobile.zoom.disable( true );
297                                         }
298                                         if ( !o.visibleOnPageShow ) {
299                                                 self.hide( true );
300                                         }
301 /* IME concenpt change after alpha2.0 */
302 /*                                      self._IMEShown = false;*/
303                                         self.setHeaderFooter( event );
304                                 } )
305                                 .bind( "webkitAnimationStart animationstart updatelayout", function ( e, data ) {
306                                         if ( o.updatePagePadding ) {
307                                                 self.updatePagePadding(data);   // FIXME: unused function.
308                                                 self.updatePageLayout(data);
309                                         }
310                                 })
311
312                                 .bind( "pageshow", function ( event ) {
313                                         self.updatePagePadding();                       // FIXME: unused function.
314                                         self._updateHeaderArea();
315                                         if ( o.updatePagePadding ) {
316                                                 $( window ).bind( "throttledresize." + self.widgetName, function () {
317                                                         self.updatePagePadding();       // FIXME: unused function.
318 /* IME concenpt change after alpha2.0 */
319 /*                                                      self.layoutPageIME();*/
320                                                         self.updatePageLayout();
321                                                         self._updateHeaderArea();
322                                                 });
323                                         }
324
325                                         /* Header position fix(remove transition) */
326                                         $( "body" ).children( ":jqmData(role='header')" )
327                                                 .insertBefore( $(event.target).find(":jqmData(role='content')").eq( 0 ) );
328 /* new_header */
329                                 })
330
331                                 .bind( "pagebeforehide", function ( e, ui ) {
332                                         if ( o.disablePageZoom ) {
333                                                 $.mobile.zoom.enable( true );
334                                         }
335                                         if ( o.updatePagePadding ) {
336                                                 $( window ).unbind( "throttledresize." + self.widgetName );
337                                         }
338
339                                         if ( o.trackPersistentToolbars ) {
340                                                 var thisFooter = $( ".ui-footer-fixed:jqmData(id)", this ),
341                                                         thisHeader = $( ".ui-header-fixed:jqmData(id)", this ),
342                                                         nextFooter = thisFooter.length && ui.nextPage && $( ".ui-footer-fixed:jqmData(id='" + thisFooter.jqmData( "id" ) + "')", ui.nextPage ),
343                                                         nextHeader = thisHeader.length && ui.nextPage && $( ".ui-header-fixed:jqmData(id='" + thisHeader.jqmData( "id" ) + "')", ui.nextPage );
344
345                                                 nextFooter = nextFooter || $();
346
347                                                 if ( nextFooter.length || nextHeader.length ) {
348
349                                                         nextFooter.add( nextHeader ).appendTo( $.mobile.pageContainer );
350
351                                                         ui.nextPage.one( "pageshow", function () {
352                                                                 nextFooter.add( nextHeader ).appendTo( this );
353                                                         });
354                                                 }
355                                         }
356                                 });
357                 },
358
359                 _bindContentControlEvents: function () {
360                         var self = this,
361                                 o = self.options,
362                                 $el = self.element;
363
364                         $el.closest( ".ui-page" )
365                                 .bind( "pagebeforeshow", function ( event ) {
366
367                                 });
368                 },
369
370                 _updateHeaderArea : function() {
371                         var $elPage = $( ".ui-page-active" ),
372                                 $elHeader = $elPage.find( ":jqmData(role='header')" ).length ? $elPage.find( ":jqmData(role='header')") : $elPage.siblings( ":jqmData(role='header')"),
373                                 headerBtnNum = $elHeader.children("a").length,
374                                 headerSrcNum = $elHeader.children("img").length;
375
376                         $elHeader.find( "h1" ).css( "width", window.innerWidth - $elHeader.children( "a" ).width() * headerBtnNum - $elHeader.children( "a" ).width() / 4 - $elHeader.children( "img" ).width() * headerSrcNum * 4 );
377                         /* add half width for default space between text and button, and img tag area is too narrow, so multiply three for img width*/
378                 },
379
380                 _visible: true,
381 /* IME concenpt change after alpha2.0 */
382 /*              _IMEShown : false,
383                 _IMEindicatorHeight : window.outerHeight - window.innerHeight,
384
385                 layoutPageIME: function () {
386                         if ( $( document.activeElement ).is( "input" ) || $( document.activeElement ).is( "textarea" )
387                                         || $(".ui-page-active .ui-header .input-search-bar").length
388                                         || $(".ui-page-active .ui-content").find("input").length
389                                         || $(".ui-page-active .ui-content").find("textarea").length) {
390
391                                 if ( ( window.innerHeight + this._IMEindicatorHeight ) < window.outerHeight && window.innerWidth == window.outerWidth ) {
392                                         if ( this._IMEShown === false ) {
393                                                 $( ".ui-page-active .ui-footer" ).hide();
394                                                 this._IMEShown = true;
395                                         }
396                                 } else if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
397                                         if ( this._IMEShown === true ) {
398                                                 $( ".ui-page-active .ui-footer" ).show();
399                                                 this._IMEShown = false;
400                                         }
401                                 }
402                         } else {
403                                 if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
404                                         if ( this._IMEShown === true ) {
405                                                 $( ".ui-page-active .ui-footer" ).show();
406                                                 this._IMEShown = false;
407                                         }
408                                 }
409                         }
410                 },
411 */
412                 // This will set the content element's top or bottom padding equal to the toolbar's height
413                 updatePagePadding: function (data) {
414                         var $el = this.element,
415                                 header = $el.is( ".ui-header" );
416
417                         // This behavior only applies to "fixed", not "fullscreen"
418                         if ( this.options.fullscreen ) { return; }
419
420 //                      $el.closest( ".ui-page" ).css( "padding-" + ( header ? "top" : "bottom" ), $el.outerHeight() );
421                 },
422
423
424                 /* 1. Calculate and update content height   */
425                 updatePageLayout: function ( receiveType ) {
426                         var $elFooter,
427                                 $elFooterControlbar,
428                                 $elPage = $( document ).find( ".ui-page-active" ),
429                                 $elHeader = $elPage.find( ":jqmData(role='header')" ),
430                                 $elContent = $elPage.find( ":jqmData(role='content')" ),
431                                 resultContentHeight = 0,
432                                 resultFooterHeight = 0,
433                                 resultHeaderHeight = 0;
434
435                         if ( $elPage.length ) {
436                                 $elFooter = $( document ).find( ".ui-page-active" ).find( ":jqmData(role='footer')" );
437                         } else {
438                                 $elFooter = $( document ).find( ":jqmData(role='footer')" ).eq( 0 );
439                         }
440                         $elFooterControlbar = $elFooter.find( ".ui-navbar" );
441
442                         // calculate footer height
443                         resultFooterHeight = ( $elFooter.css( "display" ) == "none" ) ? 0 : $elFooter.height();
444                         resultHeaderHeight = ( $elHeader.css( "display" ) == "none" ) ? 0 : $elHeader.height();
445
446                         if (resultFooterHeight != 0 ) {
447                                 $elFooter.css( "bottom", 0 );
448                         }
449
450                         resultContentHeight = window.innerHeight - resultFooterHeight - resultHeaderHeight;
451
452                         if ( $.support.scrollview ) {
453                                 if ( $elHeader.css("position") != "fixed" ) {
454                                         $elHeader.css( "position", "fixed" );
455                                 }
456
457                                 $elContent.height( resultContentHeight -
458                                                 parseFloat( $elContent.css("padding-top") ) -
459                                                 parseFloat( $elContent.css("padding-bottom") ) );
460                         } else {
461                                 if ( $elHeader.css("position") != "fixed" ) {
462                                         $elHeader.css( "position", "relative" );
463                                 } else {
464                                         $elContent.height( resultContentHeight );
465                                 }
466                         }
467
468                         // check this line need
469                         // because another style title will be not supported to updatePageLayout
470
471                         // in case title changed
472                         if ( receiveType ) {
473                                 $elContent.css( "top", resultHeaderHeight + "px" );
474                         }
475                 },
476
477                 _useTransition: function ( notransition ) {
478                         var $win = $( window ),
479                                 $el = this.element,
480                                 scroll = $win.scrollTop(),
481                                 elHeight = $el.height(),
482                                 pHeight = $el.closest( ".ui-page" ).height(),
483                                 viewportHeight = $.mobile.getScreenHeight(),
484                                 tbtype = $el.is( ":jqmData(role='header')" ) ? "header" : "footer";
485
486                         return !notransition &&
487                                 ( this.options.transition && this.options.transition !== "none" &&
488                                 (
489                                                 ( tbtype === "header" && !this.options.fullscreen && scroll > elHeight ) ||
490                                                 ( tbtype === "footer" && !this.options.fullscreen && scroll + viewportHeight < pHeight - elHeight )
491                                         ) || this.options.fullscreen
492                                 );
493                 },
494
495                 show: function ( notransition ) {
496 /*                      var hideClass = "ui-fixed-hidden",
497                                 $el = this.element;
498
499                         if ( this._useTransition( notransition ) ){
500                                 $el
501                                         .removeClass( "out " + hideClass )
502                                         .addClass( "in" );
503                         }
504                         else {
505                                 $el.removeClass( hideClass );
506                         }
507                         this._visible = true;*/
508                 },
509
510                 hide: function ( notransition ) {
511 /*                      var hideClass = "ui-fixed-hidden",
512                                 $el = this.element,
513                                 // if it's a slide transition, our new transitions need the reverse class as well to slide outward
514                                 outclass = "out" + ( this.options.transition === "slide" ? " reverse" : "" );
515
516                         if ( this._useTransition( notransition ) ){
517                                 $el
518                                         .addClass( outclass )
519                                         .removeClass( "in" )
520                                         .animationComplete( function () {
521                                                 $el.addClass( hideClass ).removeClass( outclass );
522                                         });
523                         }
524                         else {
525                                 $el.addClass( hideClass ).removeClass( outclass );
526                         }
527                         this._visible = false;*/
528                 },
529
530                 toggle: function () {
531                         this[ this._visible ? "hide" : "show" ]();
532                 },
533
534                 /* support external api for adding backbutton via javascript */
535 /*              backButton: function ( target, status ){
536                         this._addBackbutton( target, "external" );
537                 },
538 */
539                 destroy: function () {
540                         this.element.removeClass( "ui-header-fixed ui-footer-fixed ui-header-fullscreen ui-footer-fullscreen in out fade slidedown slideup ui-fixed-hidden" );
541                         this.element.closest( ".ui-page" ).removeClass( "ui-page-header-fixed ui-page-footer-fixed ui-page-header-fullscreen ui-page-footer-fullscreen" );
542                 }
543
544         });
545
546         //auto self-init widgets
547         $( document )
548                 .bind( "pagecreate create", function ( e ) {
549                         // DEPRECATED in 1.1: support for data-fullscreen=true|false on the page element.
550                         // This line ensures it still works, but we recommend moving the attribute to the toolbars themselves.
551                         if ( $( e.target ).jqmData( "fullscreen" ) ) {
552                                 $( $.mobile.pagelayout.prototype.options.initSelector, e.target ).not( ":jqmData(fullscreen)" ).jqmData( "fullscreen", true );
553                         }
554                         $.mobile.pagelayout.prototype.enhanceWithin( e.target );
555                 });
556
557 })( jQuery );