[ 
https://issues.apache.org/jira/browse/CB-12105?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15887560#comment-15887560
 ] 

ASF GitHub Bot commented on CB-12105:
-------------------------------------

Github user cordova-qa commented on the issue:

    https://github.com/apache/cordova-plugin-device/pull/61
  
    Cordova CI Build has completed successfully.
    
    **Commit**     - 
[Link](https://github.com/apache/cordova-plugin-device/pull/61/commits/4472603a42859084f1a151ebc3676421d33547a7)
    **Dashboard** - 
[Link](http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25/)
    
    | Builder Name  | Console Output | Test Report | Device Logs  |
    |     :---:     |     :---:      |   :---:     |     :---:    |
    | [Windows 10  Store]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=windows-10-store/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=windows-10-store/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=windows-10-store/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=windows-10-store/artifact/)
 |
    | [iOS 9.3]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-9.3/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-9.3/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-9.3/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-9.3/artifact/)
 |
    | [iOS 10.0]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-10.0/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-10.0/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-10.0/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=ios-10.0/artifact/)
 |
    | [Android 4.4]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-4.4/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-4.4/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-4.4/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-4.4/artifact/)
 |
    | [Android 5.1]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-5.1/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-5.1/console)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-5.1/testReport/)
 | [Link]( 
http://cordova-ci.cloudapp.net:8080/job/cordova-plugin-device-pr/25//PLATFORM=android-5.1/artifact/)
 |
     



> window.device.model returns "Chrome" instead of "Edge" when using MS Edge
> -------------------------------------------------------------------------
>
>                 Key: CB-12105
>                 URL: https://issues.apache.org/jira/browse/CB-12105
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: Plugin Device
>    Affects Versions: 6.3.2
>            Reporter: Mark Veenstra
>            Assignee: Alexander Sorokin
>            Priority: Critical
>
> When building for platform browser the {{cordova-plugin-device}} (v1.3.2) 
> returns "Chrome" instead of "Edge" when requesting {{window.device.model}} on 
> an Edge browser.
> In the {{DeviceProxy.js}} the following code is there: 
> https://github.com/apache/cordova-plugin-device/blob/master/src/browser/DeviceProxy.js#L40
> {code}
> function getBrowserInfo(getModel) {
>     var userAgent = navigator.userAgent;
>     var returnVal = '';
>     var offset;
>     if ((offset = userAgent.indexOf('Chrome')) !== -1) {
>         returnVal = (getModel) ? 'Chrome' : userAgent.substring(offset + 7);
>     } else if ((offset = userAgent.indexOf('Safari')) !== -1) {
>         if (getModel) {
>             returnVal = 'Safari';
>         } else {
>             returnVal = userAgent.substring(offset + 7);
>             if ((offset = userAgent.indexOf('Version')) !== -1) {
>                 returnVal = userAgent.substring(offset + 8);
>             }
>         }
>     } else if ((offset = userAgent.indexOf('Firefox')) !== -1) {
>         returnVal = (getModel) ? 'Firefox' : userAgent.substring(offset + 8);
>     } else if ((offset = userAgent.indexOf('MSIE')) !== -1) {
>         returnVal = (getModel) ? 'MSIE' : userAgent.substring(offset + 5);
>     } else if ((offset = userAgent.indexOf('Trident')) !== -1) {
>         returnVal = (getModel) ? 'MSIE' : '11';
>     }
>     if ((offset = returnVal.indexOf(';')) !== -1 || (offset = 
> returnVal.indexOf(' ')) !== -1) {
>         returnVal = returnVal.substring(0, offset);
>     }
>     return returnVal;
> }
> {code}
> The code above returns model Chrome as soon as it is in the userAgent string. 
> MS Edge provides the following userAgent string: {{Mozilla/5.0 (Windows NT 
> 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 
> Safari/537.36 Edge/14.14393}}
> So it seems we should be checking first if "Edge" is part of the userAgent. 
> If so the browser would be Edge.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to