Difference between revisions of "MediaWiki:Vector.js"

From WikiConference North America
Jump to navigation Jump to search
(Undo revision 15570 by Benoit Rochon (talk))
 
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);
 
// Update from https://tools.wmflabs.org/intuition/wpAvailableLanguages.js.php - Last update: Fri, 06 Mar 2015 22:58:41 +0000
 
window.wpAvailableLanguages={"en":"English","fr":"français"};
 
 
/**
 
* AnonymousI18N
 
*
 
* Internationalisation for anonymous users.
 
*
 
* @author [[User:Krinkle]]
 
* @stats [[File:Krinkle_AnonymousI18N.js]]
 
*/
 
mw.loader.using( 'mediawiki.user', function () {
 
if ( mw.user.isAnon() ) {
 
mw.loader.load( '//commons.wikimedia.org/w/index.php?title=MediaWiki:AnonymousI18N.js&action=raw&ctype=text/javascript' );
 
}
 
});
 

Latest revision as of 18:32, 3 February 2020

/* 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);