From 51f3ab16907a1b0ad4dddf273255191319f53aac Mon Sep 17 00:00:00 2001 From: Joe Vennix Date: Wed, 12 Feb 2014 15:32:47 -0600 Subject: [PATCH] Add ff 27 support to os.js --- data/js/detect/os.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data/js/detect/os.js b/data/js/detect/os.js index cf8269010f..fe5e97a623 100644 --- a/data/js/detect/os.js +++ b/data/js/detect/os.js @@ -210,7 +210,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';