Difference between revisions of "MediaWiki:Vector.js"
Jump to navigation
Jump to search
James Hare (talk | contribs) (Restoring color bar JS that was accidentally deleted in the Great Vector.js Massacre of '13) |
James Hare (talk | contribs) (Removing code replaced by MediaWiki syntax) |
||
Line 6: | Line 6: | ||
viewPortTag.content = "width=device-width; initial-scale=1; maximum-scale=1;"; |
viewPortTag.content = "width=device-width; initial-scale=1; maximum-scale=1;"; |
||
document.getElementsByTagName('head')[0].appendChild(viewPortTag); |
document.getElementsByTagName('head')[0].appendChild(viewPortTag); |
||
− | |||
− | /* Hide the default page heading on pages using the color bar heading format */ |
||
− | |||
− | function removeFirstHeading() { |
||
− | if ($("div.colorbar").length) { |
||
− | document.getElementById("firstHeading").className += " nodisplay"; |
||
− | document.getElementById("contentSub").className += " nodisplay"; |
||
− | } |
||
− | } |
||
− | |||
− | addOnloadHook(removeFirstHeading); |
Latest revision as of 09:04, 17 August 2013
/* For mobile devices */
var viewPortTag=document.createElement('meta');
viewPortTag.id="viewport";
viewPortTag.name = "viewport";
viewPortTag.content = "width=device-width; initial-scale=1; maximum-scale=1;";
document.getElementsByTagName('head')[0].appendChild(viewPortTag);