Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created August 16, 2012 22:54
Show Gist options
  • Save billerickson/3374330 to your computer and use it in GitHub Desktop.
Save billerickson/3374330 to your computer and use it in GitHub Desktop.
Fix resizing issue with iOS
<?php
/**
* Enqueue iOS bug fix
*
*/
function be_enqueue_ios_bug_fix() {
wp_enqueue_script( 'be-ios-bug', get_stylesheet_directory_uri() . '/lib/js/ios-bug.js' );
}
add_action( 'wp_enqueue_scripts', 'be_enqueue_ios_bug_fix' );
(function(doc) {
var addEvent = 'addEventListener',
type = 'gesturestart',
qsa = 'querySelectorAll',
scales = [1, 1],
meta = qsa in doc ? doc[qsa]('meta[name=viewport]') : [];
function fix() {
meta.content = 'width=device-width,minimum-scale=' + scales[0] + ',maximum-scale=' + scales[1];
doc.removeEventListener(type, fix, true);
}
if ((meta = meta[meta.length - 1]) && addEvent in doc) {
fix();
scales = [.25, 1.6];
doc[addEvent](type, fix, true);
}
}(document));
Copy link

ghost commented Aug 17, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment