mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 14:44:44 +00:00
removed $.mobile.headExtras - useless
This commit is contained in:
parent
17facff55d
commit
30c8a4cd5e
2 changed files with 0 additions and 9 deletions
|
|
@ -52,9 +52,6 @@
|
|||
<dt>metaViewportContent (<em>string</em>, default: "width=device-width, minimum-scale=1, maximum-scale=1"):</dt>
|
||||
<dd>Configure the auto-generated meta viewport tag's content attribute. If false, no meta tag will be appended to the DOM.</dd>
|
||||
|
||||
<dt>headExtras (<em>markup string or jQuery object</em>, default: null):</dt>
|
||||
<dd> Additional markup to prepend to head element.</dd>
|
||||
|
||||
<dt>gradeA (<em>function that returns a boolean</em>, default: a function returning the value of $.support.mediaquery):</dt>
|
||||
<dd>Any support conditions that must be met in order to proceed.</dd>
|
||||
|
||||
|
|
|
|||
|
|
@ -46,9 +46,6 @@
|
|||
//configure meta viewport tag's content attr:
|
||||
metaViewportContent: "width=device-width, minimum-scale=1, maximum-scale=1",
|
||||
|
||||
//additional markup to prepend to head
|
||||
headExtras: null,
|
||||
|
||||
//support conditions that must be met in order to proceed
|
||||
gradeA: function(){
|
||||
return $.support.mediaquery;
|
||||
|
|
@ -123,9 +120,6 @@
|
|||
|
||||
//add mobile, initial load "rendering" classes to docEl
|
||||
$html.addClass('ui-mobile ui-mobile-rendering');
|
||||
|
||||
//prepend head markup additions
|
||||
if( $.mobile.headExtras ){ $head.prepend( $.mobile.headExtras ); }
|
||||
|
||||
// TODO: don't expose (temporary during code reorg)
|
||||
$.mobile.urlStack = urlStack;
|
||||
|
|
|
|||
Loading…
Reference in a new issue