Fix viewport argument value to use commas

The fields separator is a , not a ;
This is a common mistake, because it was in one of the first
blogposts that discussed viewports.

Change-Id: I0b88db484c906f3c717aced67360d0f899af8f1f
This commit is contained in:
Derk-Jan Hartman 2015-07-22 23:12:26 +02:00 committed by Legoktm
parent 14dae53cbd
commit a8f8ecf234
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class SkinVector extends SkinTemplate {
parent::initPage( $out );
if ( $this->getConfig()->get( 'VectorResponsive' ) ) {
$out->addMeta( 'viewport', 'width=device-width; initial-scale=1;' );
$out->addMeta( 'viewport', 'width=device-width, initial-scale=1' );
}
// Append CSS which includes IE only behavior fixes for hover support -