3fabad9a8c664caf884760dfda06dff696e87910
[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.children().is(".ui-navbar") ) {
177                                         $elHeader.addClass( "ui-title-controlbar-height" );
178                                         $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-controlbar-height" );
179                                 } else {
180                                         if ( $elHeader.length ) {
181                                                 $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-" + tStyle + "-height" );
182                                         } else {
183                                                 $( event.target ).find( ".ui-content" ).addClass( "ui-title-content-no-height" );
184                                         }
185                                 }
186                         }
187
188                         if ( $elHeader.children().is(".ui-option-header") ) {
189                                 $elContent.removeClass( "ui-title-content-" + tStyle + "-height" );
190                                 if ( $.tizen.optionheader.prototype.options.collapseOnInit == true ) {
191                                         $elContent.addClass( "ui-title-content-option-header-collapsed-1line-height" );
192                                 } else {
193                                         $elContent.addClass( "ui-title-content-option-header-expanded-1line-height" );
194                                 }
195                         } 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" ) {
196                                 $elContent.removeClass( "ui-title-content-" + tStyle + "-height" ).addClass( "ui-title-content-search" );
197                         }
198
199                         headerBtnNum = $elHeader.children("a").length;
200                         if ( headerBtnNum > 0  || $elHeader.children().find(".ui-radio").length != 0 ) {
201                                 if ( tStyle != "normal" ) {
202                                         gLength = $elFieldcontain.length ? $elFieldcontain.find( ".ui-radio" ).length : $elControlgroup.find( "a" ).length;
203
204                                         $elHeader.addClass( "ui-title-extended-height" );
205
206                                         $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" );
207
208                                         $elFieldcontain.length ? $elFieldcontain.addClass( "ui-title-extended-segment-style" ) : $elControlgroup.addClass( "ui-title-extended-segment-style" );
209
210                                         if ( gLength == 2 || gLength == 3 || gLength == 4 ) {
211                                                 $elFieldcontain.length ? $elFieldcontain.addClass( "ui-title-extended-controlgroup-" + gLength + "btn" ) : $elControlgroup.addClass( "ui-title-extended-controlgroup-" + gLength + "btn" );
212                                         }
213                                 }
214                                 $elContent.addClass( "ui-title-content-" + tStyle + "-height" );
215                         }
216
217                         // divide content mode scrollview and non-scrollview
218                         // recalculate content area when resize callback occur
219                         if ( $.support.scrollview ) {
220                                 if ( $elHeader.css( "position" ) != "fixed" ) {
221                                         $elHeader.css( "position", "fixed" );
222                                 }
223
224                         } else {
225                                 if ( $elHeader.css("position") != "fixed" ) {
226                                         $elHeader.css( "position", "relative" );
227                                 }
228                         }
229
230                         $elFooter = $( document ).find( ":jqmData(role='footer')" );
231
232                         if ( $elFooter.find(".ui-navbar").is(".ui-controlbar-s") ) {
233                                 $elFooter
234                                         .css( "bottom", 0 )
235                                         .show();
236                         }
237
238                         if ( $elFooter.children().find(".ui-radio").length != 0 ) {
239                                 $elFooterGroup = $elFooter.find( ":jqmData(role='fieldcontain')" );
240                                 gLength = $elFooterGroup.find( ".ui-radio" ).length;
241
242                                 $elFooterGroup.find( ".ui-controlgroup" )
243                                         .addClass( "ui-extended-controlgroup" )
244                                         .addClass( "ui-footer-extended-controlgroup" )
245                                         .css( "display", "inline" );
246
247                                         /* Groupcontrol cannot initialize inline property at first page */
248                                 $elFooterGroup.addClass( "ui-footer-extended-controlgroup-" + gLength + "btn" );
249                         }
250
251                         footerButton = $elFooter.children( "a" );
252                         footerButton.each( function ( i ) {
253                                 if ( footerButton.eq( i ).is(".ui-btn") && !footerButton.eq( i ).is(".ui-btn-back") ) {
254                                         footerButton.eq( i )
255                                                 .removeClass( "ui-btn-left" )
256                                                 .addClass( "ui-btn-footer-right" );
257                                 }
258                         });
259
260                         if ( $elFooter.is(".ui-footer-fixed") ) {
261                                 $elFooter.css( "bottom", 0 );
262                         }
263
264                         $elFooter.show();
265
266                         /* Header position fix(remove transition) */
267                         next_id = $( event.target ).attr( "id" );
268
269                         $( "#" + next_id ).find( ":jqmData(role='header')" )
270                                 .removeClass( "fade in out" )
271                                 .appendTo( $.mobile.pageContainer );
272                 },
273
274                 _bindPageEvents: function () {
275                         var self = this,
276                                 o = self.options,
277                                 $el = self.element;
278
279                         //page event bindings
280                         // Fixed toolbars require page zoom to be disabled, otherwise usability issues crop up
281                         // This method is meant to disable zoom while a fixed-positioned toolbar page is visible
282                         $el.closest( ".ui-page" )
283                                 .bind( "pagebeforeshow", function ( event ) {
284                                         if ( o.disablePageZoom ) {
285                                                 $.mobile.zoom.disable( true );
286                                         }
287                                         if ( !o.visibleOnPageShow ) {
288                                                 self.hide( true );
289                                         }
290 /* IME concenpt change after alpha2.0 */
291 /*                                      self._IMEShown = false;*/
292                                         self.setHeaderFooter( event );
293                                 } )
294                                 .bind( "webkitAnimationStart animationstart updatelayout", function ( e, data ) {
295                                         if ( o.updatePagePadding ) {
296                                                 self.updatePagePadding(data);   // FIXME: unused function.
297                                                 self.updatePageLayout(data);
298                                         }
299                                 })
300
301                                 .bind( "pageshow", function ( event ) {
302                                         self.updatePagePadding();                       // FIXME: unused function.
303                                         self._updateHeaderArea();
304                                         if ( o.updatePagePadding ) {
305                                                 $( window ).bind( "throttledresize." + self.widgetName, function () {
306                                                         self.updatePagePadding();       // FIXME: unused function.
307 /* IME concenpt change after alpha2.0 */
308 /*                                                      self.layoutPageIME();*/
309                                                         self.updatePageLayout();
310                                                         self._updateHeaderArea();
311                                                 });
312                                         }
313
314                                         /* Header position fix(remove transition) */
315                                         $( "body" ).children( ":jqmData(role='header')" )
316                                                 .insertBefore( $(event.target).find(":jqmData(role='content')").eq( 0 ) );
317 /* new_header */
318                                 })
319
320                                 .bind( "pagebeforehide", function ( e, ui ) {
321                                         if ( o.disablePageZoom ) {
322                                                 $.mobile.zoom.enable( true );
323                                         }
324                                         if ( o.updatePagePadding ) {
325                                                 $( window ).unbind( "throttledresize." + self.widgetName );
326                                         }
327
328                                         if ( o.trackPersistentToolbars ) {
329                                                 var thisFooter = $( ".ui-footer-fixed:jqmData(id)", this ),
330                                                         thisHeader = $( ".ui-header-fixed:jqmData(id)", this ),
331                                                         nextFooter = thisFooter.length && ui.nextPage && $( ".ui-footer-fixed:jqmData(id='" + thisFooter.jqmData( "id" ) + "')", ui.nextPage ),
332                                                         nextHeader = thisHeader.length && ui.nextPage && $( ".ui-header-fixed:jqmData(id='" + thisHeader.jqmData( "id" ) + "')", ui.nextPage );
333
334                                                 nextFooter = nextFooter || $();
335
336                                                 if ( nextFooter.length || nextHeader.length ) {
337
338                                                         nextFooter.add( nextHeader ).appendTo( $.mobile.pageContainer );
339
340                                                         ui.nextPage.one( "pageshow", function () {
341                                                                 nextFooter.add( nextHeader ).appendTo( this );
342                                                         });
343                                                 }
344                                         }
345                                 });
346                 },
347
348                 _bindContentControlEvents: function () {
349                         var self = this,
350                                 o = self.options,
351                                 $el = self.element;
352
353                         $el.closest( ".ui-page" )
354                                 .bind( "pagebeforeshow", function ( event ) {
355
356                                 });
357                 },
358
359                 _updateHeaderArea : function() {
360                         var $elPage = $( ".ui-page-active" ),
361                                 $elHeader = $elPage.find( ":jqmData(role='header')" ).length ? $elPage.find( ":jqmData(role='header')") : $elPage.siblings( ":jqmData(role='header')"),
362                                 headerBtnNum = $elHeader.children("a").length,
363                                 headerSrcNum = $elHeader.children("img").length;
364
365                         $elHeader.find( "h1" ).css( "width", window.innerWidth - $elHeader.children( "a" ).width() * headerBtnNum - $elHeader.children( "a" ).width() / 4 - $elHeader.children( "img" ).width() * headerSrcNum * 3 );
366                         /* add half width for default space between text and button, and img tag area is too narrow, so multiply three for img width*/
367                 },
368
369                 _visible: true,
370 /* IME concenpt change after alpha2.0 */
371 /*              _IMEShown : false,
372                 _IMEindicatorHeight : window.outerHeight - window.innerHeight,
373
374                 layoutPageIME: function () {
375                         if ( $( document.activeElement ).is( "input" ) || $( document.activeElement ).is( "textarea" )
376                                         || $(".ui-page-active .ui-header .input-search-bar").length
377                                         || $(".ui-page-active .ui-content").find("input").length
378                                         || $(".ui-page-active .ui-content").find("textarea").length) {
379
380                                 if ( ( window.innerHeight + this._IMEindicatorHeight ) < window.outerHeight && window.innerWidth == window.outerWidth ) {
381                                         if ( this._IMEShown === false ) {
382                                                 $( ".ui-page-active .ui-footer" ).hide();
383                                                 this._IMEShown = true;
384                                         }
385                                 } else if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
386                                         if ( this._IMEShown === true ) {
387                                                 $( ".ui-page-active .ui-footer" ).show();
388                                                 this._IMEShown = false;
389                                         }
390                                 }
391                         } else {
392                                 if ( ( window.innerHeight + this._IMEindicatorHeight ) >= window.outerHeight ) {
393                                         if ( this._IMEShown === true ) {
394                                                 $( ".ui-page-active .ui-footer" ).show();
395                                                 this._IMEShown = false;
396                                         }
397                                 }
398                         }
399                 },
400 */
401                 // This will set the content element's top or bottom padding equal to the toolbar's height
402                 updatePagePadding: function (data) {
403                         var $el = this.element,
404                                 header = $el.is( ".ui-header" );
405
406                         // This behavior only applies to "fixed", not "fullscreen"
407                         if ( this.options.fullscreen ) { return; }
408
409 //                      $el.closest( ".ui-page" ).css( "padding-" + ( header ? "top" : "bottom" ), $el.outerHeight() );
410                 },
411
412
413                 /* 1. Calculate toolbar width(only controlbar)
414                 *  2. Calculate and update content height   */
415                 updatePageLayout: function ( receiveType ) {
416                         var $elFooter,
417                                 $elFooterControlbar,
418                                 $elPage = $( document ).find( ".ui-page-active" ),
419                                 $elHeader = $elPage.find( ":jqmData(role='header')" ),
420                                 $elContent = $elPage.find( ":jqmData(role='content')" ),
421                                 resultContentHeight = 0,
422                                 resultFooterHeight = 0,
423                                 resultHeaderHeight = 0;
424
425                         if ( $elPage.length ) {
426                                 $elFooter = $( document ).find( ".ui-page-active" ).find( ":jqmData(role='footer')" );
427                         } else {
428                                 $elFooter = $( document ).find( ":jqmData(role='footer')" ).eq( 0 );
429                         }
430                         $elFooterControlbar = $elFooter.find( ".ui-navbar" );
431
432                         // calculate footer height
433                         resultFooterHeight = ( $elFooter.css( "display" ) == "none" ) ? 0 : $elFooter.height();
434                         resultHeaderHeight = ( $elHeader.css( "display" ) == "none" ) ? 0 : $elHeader.height();
435
436                         if (resultFooterHeight != 0 ) {
437                                 $elFooter.css( "bottom", 0 );
438                         }
439                         if ( $elFooterControlbar.jqmData("style") == "toolbar" ) {
440                                 $elFooterControlbar.css( "width", window.innerWidth - $elFooterControlbar.siblings( ".ui-btn" ).width() - parseInt($elFooterControlbar.siblings(".ui-btn").css("right"), 10 ) * 2  );
441                         }
442
443                         resultContentHeight = window.innerHeight - resultFooterHeight - resultHeaderHeight;
444
445                         if ( $.support.scrollview ) {
446                                 if ( $elHeader.css("position") != "fixed" ) {
447                                         $elHeader.css( "position", "fixed" );
448                                 }
449
450                                 $elContent.height( resultContentHeight -
451                                                 parseFloat( $elContent.css("padding-top") ) -
452                                                 parseFloat( $elContent.css("padding-bottom") ) );
453                         } else {
454                                 if ( $elHeader.css("position") != "fixed" ) {
455                                         $elHeader.css( "position", "relative" );
456                                 } else {
457                                         $elContent.height( resultContentHeight );
458                                 }
459                         }
460
461                         // check this line need
462                         // because another style title will be not supported to updatePageLayout
463
464                         // in case title changed
465                         if ( receiveType ) {
466                                 $elContent.css( "top", resultHeaderHeight + "px" );
467                         }
468                 },
469
470                 _useTransition: function ( notransition ) {
471                         var $win = $( window ),
472                                 $el = this.element,
473                                 scroll = $win.scrollTop(),
474                                 elHeight = $el.height(),
475                                 pHeight = $el.closest( ".ui-page" ).height(),
476                                 viewportHeight = $.mobile.getScreenHeight(),
477                                 tbtype = $el.is( ":jqmData(role='header')" ) ? "header" : "footer";
478
479                         return !notransition &&
480                                 ( this.options.transition && this.options.transition !== "none" &&
481                                 (
482                                                 ( tbtype === "header" && !this.options.fullscreen && scroll > elHeight ) ||
483                                                 ( tbtype === "footer" && !this.options.fullscreen && scroll + viewportHeight < pHeight - elHeight )
484                                         ) || this.options.fullscreen
485                                 );
486                 },
487
488                 show: function ( notransition ) {
489 /*                      var hideClass = "ui-fixed-hidden",
490                                 $el = this.element;
491
492                         if ( this._useTransition( notransition ) ){
493                                 $el
494                                         .removeClass( "out " + hideClass )
495                                         .addClass( "in" );
496                         }
497                         else {
498                                 $el.removeClass( hideClass );
499                         }
500                         this._visible = true;*/
501                 },
502
503                 hide: function ( notransition ) {
504 /*                      var hideClass = "ui-fixed-hidden",
505                                 $el = this.element,
506                                 // if it's a slide transition, our new transitions need the reverse class as well to slide outward
507                                 outclass = "out" + ( this.options.transition === "slide" ? " reverse" : "" );
508
509                         if ( this._useTransition( notransition ) ){
510                                 $el
511                                         .addClass( outclass )
512                                         .removeClass( "in" )
513                                         .animationComplete( function () {
514                                                 $el.addClass( hideClass ).removeClass( outclass );
515                                         });
516                         }
517                         else {
518                                 $el.addClass( hideClass ).removeClass( outclass );
519                         }
520                         this._visible = false;*/
521                 },
522
523                 toggle: function () {
524                         this[ this._visible ? "hide" : "show" ]();
525                 },
526
527                 /* support external api for adding backbutton via javascript */
528 /*              backButton: function ( target, status ){
529                         this._addBackbutton( target, "external" );
530                 },
531 */
532                 destroy: function () {
533                         this.element.removeClass( "ui-header-fixed ui-footer-fixed ui-header-fullscreen ui-footer-fullscreen in out fade slidedown slideup ui-fixed-hidden" );
534                         this.element.closest( ".ui-page" ).removeClass( "ui-page-header-fixed ui-page-footer-fixed ui-page-header-fullscreen ui-page-footer-fullscreen" );
535                 }
536
537         });
538
539         //auto self-init widgets
540         $( document )
541                 .bind( "pagecreate create", function ( e ) {
542                         // DEPRECATED in 1.1: support for data-fullscreen=true|false on the page element.
543                         // This line ensures it still works, but we recommend moving the attribute to the toolbars themselves.
544                         if ( $( e.target ).jqmData( "fullscreen" ) ) {
545                                 $( $.mobile.pagelayout.prototype.options.initSelector, e.target ).not( ":jqmData(fullscreen)" ).jqmData( "fullscreen", true );
546                         }
547                         $.mobile.pagelayout.prototype.enhanceWithin( e.target );
548                 });
549
550 })( jQuery );