Skip to content

Commit

Permalink
FIX: missed comma in detect.js
Browse files Browse the repository at this point in the history
The missed comma can cause problems, better to be safe than sorry.
  • Loading branch information
Stefan Andres Charsley committed Sep 13, 2013
1 parent 671dc9a commit aaf6b31
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 @@ -20,7 +20,7 @@
playbook = ua.match(/PlayBook/),
chrome = ua.match(/Chrome\/([\d.]+)/) || ua.match(/CriOS\/([\d.]+)/),
firefox = ua.match(/Firefox\/([\d.]+)/),
ie = ua.match(/MSIE ([\d.]+)/)
ie = ua.match(/MSIE ([\d.]+)/),
safari = webkit && ua.match(/Mobile\//) && !chrome,
webview = ua.match(/(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/) && !chrome

Expand Down

0 comments on commit aaf6b31

Please sign in to comment.