Sha256: 68d93f4201af96f1f2eea6f9508fb8e61e307b5549baa93eed2cd89bf2c99a14

Contents?: true

Size: 911 Bytes

Versions: 144

Compression:

Stored size: 911 Bytes

Contents

// determining low-bandwidth via navigator.connection

// There are two iterations of the navigator.connection interface:

// The first is present in Android 2.2+ and only in the Browser (not WebView)
// : docs.phonegap.com/en/1.2.0/phonegap_connection_connection.md.html#connection.type
// : davidbcalhoun.com/2010/using-navigator-connection-android

// The second is specced at dev.w3.org/2009/dap/netinfo/ and perhaps landing in WebKit
// : bugs.webkit.org/show_bug.cgi?id=73528

// unknown devices are assumed as fast
// for more rigorous network testing, consider boomerang.js: github.com/bluesmoon/boomerang/

Modernizr.addTest('lowbandwidth', function() {

  var connection = navigator.connection || { type: 0 }; // polyfill

  return connection.type == 3 || // connection.CELL_2G
      connection.type == 4 || // connection.CELL_3G
      /^[23]g$/.test(connection.type); // string value in new spec
});

Version data entries

144 entries across 144 versions & 7 rubygems

Version Path
trusty-festivity-extension-2.5.6 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.5 vendor/assets/components/modernizr/feature-detects/network-connection.js
catscope-0.1.1 assets/bower_components/modernizr/feature-detects/network-connection.js
rubyneat_dashboard-0.4.1 bower_components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.4 vendor/assets/components/modernizr/feature-detects/network-connection.js
paint-rails-0.8.27.1 vendor/assets/stylesheets/bower_components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.3 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.2 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.1 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.5.0 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.6 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.5 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.4 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.3 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.2 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.1 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.4.0 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.3.30 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.3.29 vendor/assets/components/modernizr/feature-detects/network-connection.js
trusty-festivity-extension-2.3.28 vendor/assets/components/modernizr/feature-detects/network-connection.js