mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-05-15 10:03:10 +00:00
fix for float value appearing earlier in ua string
surprised this didn't pop up earlier on android. I ❤️ ua strings.
This commit is contained in:
parent
a4e09c8ad5
commit
7d7c913b64
1 changed files with 1 additions and 1 deletions
|
|
@ -70,7 +70,7 @@ window.Perf = (function($, Perf) {
|
|||
vRegexs: {}
|
||||
});
|
||||
|
||||
Perf.vRegexs[Perf.agents.ANDROID] = /([0-9].[0-9])(.[0-9])?/;
|
||||
Perf.vRegexs[Perf.agents.ANDROID] = /Android ([0-9].[0-9])(.[0-9])?/;
|
||||
Perf.vRegexs[Perf.agents.WP] = /Windows Phone OS ([0-9].[0-9]);/;
|
||||
Perf.vRegexs[Perf.agents.IPHONE] = /iPhone OS ([0-9]_[0-9])/;
|
||||
Perf.vRegexs[Perf.agents.IPAD] = /iPad; U; CPU OS ([0-9]_[0-9])/;
|
||||
|
|
|
|||
Loading…
Reference in a new issue