Removed duplicates

This commit is contained in:
Robin 2012-01-22 00:10:06 +01:00
parent 9f0ca7cc44
commit 300886da34
3 changed files with 4 additions and 11 deletions

View file

@ -95,7 +95,8 @@ var browser = {
opera: /opera/.test(userAgent),
msie: /msie/.test(userAgent) && !/opera/.test(userAgent),
mozilla: /mozilla/.test(userAgent) && !/(compatible|webkit)/.test(userAgent),
windows: /windows/.test(userAgent) // dgreensp
windows: /windows/.test(userAgent)
mobile: /mobile/.test(userAgent) || /android/.test(userAgent);
};