diff --git a/docs/_assets/css/jqm-docs.css b/docs/_assets/css/jqm-docs.css
index 7ffa59dd..ede681b1 100644
--- a/docs/_assets/css/jqm-docs.css
+++ b/docs/_assets/css/jqm-docs.css
@@ -3,4 +3,5 @@
.ui-mobile #jqm-homeheader h1 { margin: 0 0 10px; }
.ui-mobile #jqm-homeheader p { margin: 0; }
.ui-mobile #jqm-version { text-indent: -99999px; background: url(../images/version.png) top right no-repeat; width: 119px; height: 122px; overflow: hidden; position: absolute; top: 0; right: 0; }
-.ui-mobile .jqm-themeswitcher { clear: both; margin: 20px 0 -15px; }
\ No newline at end of file
+.ui-mobile .jqm-themeswitcher { clear: both; margin: 20px 0 -15px; }
+dt { font-weight: bold; margin-top: 2em; }
\ No newline at end of file
diff --git a/docs/api/global-settings.html b/docs/api/global-settings.html
index f641c946..aa6331a2 100755
--- a/docs/api/global-settings.html
+++ b/docs/api/global-settings.html
@@ -4,6 +4,7 @@
jQuery Mobile Docs - Configurable Default Settings
+
@@ -52,9 +53,6 @@
metaViewportContent (string, default: "width=device-width, minimum-scale=1, maximum-scale=1"):
Configure the auto-generated meta viewport tag's content attribute. If false, no meta tag will be appended to the DOM.
- headExtras (markup string or jQuery object, default: null):
- Additional markup to prepend to head element.
-
gradeA (function that returns a boolean, default: a function returning the value of $.support.mediaquery):
Any support conditions that must be met in order to proceed.
diff --git a/js/jquery.mobile.js b/js/jquery.mobile.js
index 8ff11b76..feb9dd6f 100644
--- a/js/jquery.mobile.js
+++ b/js/jquery.mobile.js
@@ -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;