windows phone support

Discussions about Z-Way software and Z-Wave technology in general
Post Reply
hapination
Posts: 13
Joined: 14 Jan 2013 16:35

windows phone support

Post by hapination »

Currently I haven't found any app for the wp8. Also the mobile ui doesn't seem to work on my Lumia 820. It shows the main page but if I navigate to any device specific page (light/sensor/devices) I don't see my device there.
User avatar
PoltoS
Posts: 7649
Joined: 26 Jan 2011 19:36

There is no special app for

Post by PoltoS »

There is no special app for Windows Phone 8 yet. As for the mobile app, it is a simple web page, but it was not tested with Internet Explorer used in WP8. We will try to have a look on WP8 in future.
hapination
Posts: 13
Joined: 14 Jan 2013 16:35

Hopefully you could soon get

Post by hapination »

Hopefully you could soon get the mobile version to work with WP8 (or the Internet Explorer that it uses).
Currently it looks like my only option is to buy the Vera or change my new WP8 phone, out of which the Vera is the cheaper option.

Damn WP8 for not having an option to switch the browser.
dpaiha
Posts: 1
Joined: 28 Dec 2014 17:50

Re: windows phone support

Post by dpaiha »

In jqmobile/js/mobile_zwave.js:
// to workaround problem with jQuery mobile initialization when accessed by URL with hash (#allsensors, happens after reload)
if (document.baseURI != document.URL) {
document.location.href = document.baseURI;
return;
}
document.BaseURI will always be undefined in IE.

A more robust way could be
var iHash = document.URL.indexOf('#');
if(iHash != -1) {
document.location.href = document.URL.substr(0,iHash);
return;
}
Post Reply