removed $.mobile.headExtras - useless

This commit is contained in:
scottjehl 2010-11-11 13:38:05 -05:00
parent 17facff55d
commit 30c8a4cd5e
2 changed files with 0 additions and 9 deletions

View file

@ -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>

View file

@ -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;