You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Rodrigo Silveira (JIRA)" <ji...@apache.org> on 2014/05/02 22:13:15 UTC

[jira] [Assigned] (CB-5796) Firefox OS Network Information doesn't work

     [ https://issues.apache.org/jira/browse/CB-5796?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Rodrigo Silveira reassigned CB-5796:
------------------------------------

    Assignee: Rodrigo Silveira

> Firefox OS Network Information doesn't work
> -------------------------------------------
>
>                 Key: CB-5796
>                 URL: https://issues.apache.org/jira/browse/CB-5796
>             Project: Apache Cordova
>          Issue Type: Bug
>          Components: FirefoxOS, Plugin Network Information
>    Affects Versions: 3.3.0
>            Reporter: Nam Kim
>            Assignee: Rodrigo Silveira
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> h4. Issue #1:
> {code:javascript|title=cordova-plugin-network-information/src/firefoxos/NetworkProxy.js:ln32}
> var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; 
> {code}    
> The line above is written inside an object declaration, which causes syntax errors.
> h4. Issue #2
> navigator.connection exists, but connection.bandwidth and connection.metered are undefined. We should instead be checking for mozConnection.bandwidth and mozConnection.metered.
> Suggested fix:
> {code:javascript}
> var connection = navigator.mozConnection || navigator.webkitConnection; 
> {code}
> h4. Issue #3
> {code:javascript|title=cordova-plugin-network-information/src/firefoxos/NetworkProxy.js:ln60}
> require("cordova/firefoxos/commandProxy").add("Network", module.exports);});
> {code}
> should be
> {code:javascript}
> require("cordova/firefoxos/commandProxy").add("NetworkStatus", module.exports);});
> {code}
> h4. Issue #4
> The overridden navigator.connection.type doesn't speak Cordova interface.
> I am not too familiar with Firefox OS, but just wondering if navigator.mozConnection.bandwidth is 0, it can be translated to "none" and else (if bandwidth is not 0) "unknown".



--
This message was sent by Atlassian JIRA
(v6.2#6252)