WP7 handling of URL fragments
-----------------------------
Key: CB-185
URL: https://issues.apache.org/jira/browse/CB-185
Project: Apache Callback
Issue Type: Bug
Components: WP7
Reporter: Colin Eberhardt
Assignee: Jesse MacFadyen
Priority: Minor
Currently there is code in PGView.xaml.cs that halts navigation if the URL
contains a fragment:
if (e.Uri.ToString().IndexOf("#") > -1)
{
e.Cancel = true;
}
I understand that PhoneGap couldn't easily support navigating the given page,
then scrolling to the fragment location. However cancelling navigation is a bit
extreme!
I would suggest removing the fragment from the URL then simply navigating to
the given page.
--
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