JohnMunsch/PaperQuik

View on GitHub
app/bower_components/conditionizr/detects/opera.js

Summary

Maintainability
A
35 mins
Test Coverage
/*!
 * Opera
 * `window.opera` applies to earlier Opera
 * browsers, others respond true to `window.chrome`
 * so we need to test the `navigator.vendor` to be sure
 */
conditionizr.add('opera', function () {
  return !!window.opera || /opera/i.test(navigator.vendor);
});