Add ff26 feature detection support.

bug/bundler_fix
Joe Vennix 2013-12-10 10:47:11 -06:00
parent f402f4c16e
commit 6cd315da64
1 changed files with 5 additions and 1 deletions

View File

@ -210,7 +210,11 @@ window.os_detect.getVersion = function(){
// Thanks to developer.mozilla.org "Firefox for developers" series for most
// of these.
// Release changelogs: http://www.mozilla.org/en-US/firefox/releases/
if (css_is_valid('background-attachment',
if (css_is_valid('image-orientation',
'imageOrientation',
'0deg')) {
ua_version = '26.0';
} else if (css_is_valid('background-attachment',
'backgroundAttachment',
'local')) {
ua_version = '25.0';