We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 633b5e0 commit 477f85cCopy full SHA for 477f85c
tests/speed/stats/perf.js
@@ -63,7 +63,8 @@ window.Perf = (function($, Perf) {
63
ANDROID: "Android",
64
WP: "Windows Phone OS",
65
IPHONE: "iPhone OS",
66
- IPAD: "iPad; U; CPU OS"
+ IPAD: "iPad; U; CPU OS",
67
+ BLACKBERRY: "BlackBerry"
68
},
69
70
vRegexs: {}
@@ -73,6 +74,7 @@ window.Perf = (function($, Perf) {
73
74
Perf.vRegexs[Perf.agents.WP] = /Windows Phone OS ([0-9].[0-9]);/;
75
Perf.vRegexs[Perf.agents.IPHONE] = /iPhone OS ([0-9]_[0-9])/;
76
Perf.vRegexs[Perf.agents.IPAD] = /iPad; U; CPU OS ([0-9]_[0-9])/;
77
+ Perf.vRegexs[Perf.agents.BLACKBERRY] = /BlackBerry ([0-9]{4})/;
78
79
return Perf;
80
})(jQuery, window.Perf || {});
0 commit comments