Skip to content

Commit

Permalink
Fix IE detection, update mobile safari logo
Browse files Browse the repository at this point in the history
  • Loading branch information
alanshaw committed Feb 19, 2014
1 parent 6c1aa48 commit f21db64
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/js/main.js
Expand Up @@ -158,7 +158,7 @@ function groupAgent(agent) {
return AgentGroup.MobileSafari;
} else if(agent.indexOf('IE Mobile') != -1) {
return AgentGroup.IEMobile;
} else if(agent.indexOf('IE') != -1) {
} else if(agent.indexOf('IE') != -1 || agent.indexOf('Trident') != -1) {
return AgentGroup.IE;
}
return AgentGroup.Other;
Expand Down
Binary file modified public/img/browser-logos/mobile-safari.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f21db64

Please sign in to comment.