We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0612e19 + 5bfb88d commit 75e0470Copy full SHA for 75e0470
data/js/detect/os.js
@@ -222,7 +222,13 @@ os_detect.getVersion = function(){
222
// Thanks to developer.mozilla.org "Firefox for developers" series for most
223
// of these.
224
// Release changelogs: http://www.mozilla.org/en-US/firefox/releases/
225
- if ('copyWithin' in Array.prototype) {
+ if ('closest' in Element.prototype) {
226
+ ua_version = '35.0';
227
+ } else if ('matches' in Element.prototype) {
228
+ ua_version = '34.0';
229
+ } else if ('RadioNodeList' in window) {
230
+ ua_version = '33.0';
231
+ } else if ('copyWithin' in Array.prototype) {
232
ua_version = '32.0';
233
} else if ('fill' in Array.prototype) {
234
ua_version = '31.0';
0 commit comments