Skip to content

Commit

Permalink
FIX: typo in detect.js
Browse files Browse the repository at this point in the history
There was a type in detect.js that would cause the test case to fail.
  • Loading branch information
Stefan Andres Charsley committed Sep 13, 2013
1 parent 5dc42ff commit 671dc9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detect.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
if (!silk && os.android && ua.match(/Kindle Fire/)) browser.silk = true
if (chrome) browser.chrome = true, browser.version = chrome[1]
if (firefox) browser.firefox = true, browser.version = firefox[1]
if (ie) browser.ie = true, browser.verson = ie[1]
if (ie) browser.ie = true, browser.version = ie[1]
if (safari && (ua.match(/Safari/) || !!os.ios)) browser.safari = true
if (webview) browser.webview = true

Expand Down

0 comments on commit 671dc9a

Please sign in to comment.