Sha256: 95cd438721cefaf3acb24d719bed656261589c10c0e940bd0db3f053f47fc1ee

Contents?: true

Size: 369 Bytes

Versions: 3

Compression:

Stored size: 369 Bytes

Contents

pageflow.browser.feature('mobile platform', function() {
  var matchers = [/iPod/i, /iPad/i, /iPhone/i, /Android/i, /Silk/i, /IEMobile/i];
  return _.any(matchers, function(matcher) {
    return navigator.userAgent.match(matcher);
  });
});

if (navigator.userAgent.match(/iPad;.*CPU.*OS 7_\d/i) && !window.navigator.standalone) {
    $('html').addClass('ipad ios7');
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pageflow-0.9.2 app/assets/javascripts/pageflow/browser/mobile_platform.js
pageflow-0.9.1 app/assets/javascripts/pageflow/browser/mobile_platform.js
pageflow-0.9.0 app/assets/javascripts/pageflow/browser/mobile_platform.js