Skip to content

Instantly share code, notes, and snippets.

View JustinWinthers's full-sized avatar

Justin Winthers JustinWinthers

  • Hoozip.com
  • Herndon, Virginia
View GitHub Profile
@sujoyu
sujoyu / for-ios10.js
Created October 8, 2016 15:18
Google Maps Scripts API bug fix code on iOS 10.
(function() {
function ios_ver (){
var ios_ua = navigator.userAgent;
if( ios_ua.indexOf("iPhone") > 0 ) {
ios_ua.match(/iPhone OS (\w+)/g);
var version = RegExp.$1.split("_")[0];
return version;
}
}
if (ios_ver() === '10') {