Land #2987 - Add ff 27 support to os.js

This commit is contained in:
sinn3r 2014-02-13 15:20:53 -06:00
commit 00ba0b5208
No known key found for this signature in database
GPG Key ID: 2384DB4EF06F730B
1 changed files with 3 additions and 1 deletions

View File

@ -213,7 +213,9 @@ 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('image-orientation',
if (css_is_valid('cursor', 'cursor', 'grab')) {
ua_version = '27.0';
} else if (css_is_valid('image-orientation',
'imageOrientation',
'0deg')) {
ua_version = '26.0';