WP7 application root ha a slash in the wrong direction
------------------------------------------------------
Key: CB-184
URL: https://issues.apache.org/jira/browse/CB-184
Project: Apache Callback
Issue Type: Bug
Reporter: Colin Eberhardt
Priority: Minor
The PGView.xaml.cs has the following variable declared:
private static string AppRoot = "app\\";
However, when the web browser navigates to the index.html page, you find that
the browser URL is as follows:
app\www/index.html
Likewise, if you navigate back to the index page, the URL now becomes:
app/www/index.html
Basically, changing the variable to the following would fix the problem:
private static string AppRoot = "app/";
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira