Skip to content
This repository has been archived by the owner on Feb 9, 2021. It is now read-only.

Wrong comma brakes on IE7 #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/devicedetection.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

/**
* DeviceDetection Class
* @author Daniel Pötzinger
Expand Down Expand Up @@ -40,7 +39,7 @@ DeviceDetection = function(ua) {
tabletPc: Boolean(ua.match(/Tablet PC/)),
palmDevice: Boolean(ua.match(/(PalmOS|PalmSource| Pre\/)/)),
kindle: Boolean(ua.match(/(Kindle)/)),
otherMobileHints: Boolean(ua.match(/(Opera Mini|IEMobile|SonyEricsson|smartphone)/)),
otherMobileHints: Boolean(ua.match(/(Opera Mini|IEMobile|SonyEricsson|smartphone)/))
};
}

Expand Down