mobileesp icon indicating copy to clipboard operation
mobileesp copied to clipboard

MobileESP

Results 8 mobileesp issues
Sort by recently updated
recently updated
newest added

In Java code there is a test repeated twice `if (userAgent.indexOf(deviceWinMob) != -1 || userAgent.indexOf(deviceWinMob) != -1 ` Not an issue of course. It is has popped out by SpotBugs...

Mavenised java project and added unit tests.

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

Prior code on line 1089 for mdetect.php was using $this->isTierTablet which isn't set when running this the first time. Changed to DetectTierTablet which sets $this->isTierTablet

refactorings of the complete class, changed to easier to read "contain()" and made some simplifications to return statements and removed unnecessary braces

… user agent both android and iphone and that caused it to be detected in a wrong way. Here the details: http://www.neowin.net/news/ie11-fakes-user-agent-to-fool-gmail-in-windows-phone-81-gdr1-update

Amazon Fire TVs and Samsung Smart TVs are classified as android and linux respectively. https://developer.amazon.com/public/solutions/devices/fire-tv/docs/user-agent-strings http://developer.samsung.com/technical-doc/view.do?v=T000000203 Mozilla/5.0 (Linux; U; Android 4.2.2; en-us; AFTB Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile...

According [PEP8 function names convention](https://www.python.org/dev/peps/pep-0008/#function-names): > Function names should be lowercase, with words separated by underscores as necessary to improve readability. > > mixedCase is allowed only in contexts where...