-
Notifications
You must be signed in to change notification settings - Fork 60
Navigate: fixed error in warning text #290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -4,7 +4,7 @@ | |||
<desc>Alter the url and track history. Works for browsers with and without the new history API.</desc> | |||
<longdesc> | |||
<p>The <code>$.mobile.navigate</code> method provides a uniform history manipulation API for browsers that support the new history API and those that don't (hashchange). It works in concert with the navigate event by storing and retrieving arbitrary data in association with a URL (much like <code>popState</code> and <code>replaceState</code>). When the user returns to a URL set by the navigate method the navigate event is triggered with the associated data.</p> | |||
<p id="low-level" class="warning"><strong>Note:</strong> This method is a low-level utility which can be used on its own. If you use the jQuery Mobile navigation framework, you should not separately use this utility. Instead, you should use <a href="/pagecontainer/">pagecontainer</a> event handlers to influence the navigation process.</p> | |||
<p id="low-level" class="warning"><strong>Note:</strong> This method is a low-level utility which can be used on its own. If you use the jQuery Mobile navigation framework, you should not separately use this utility. Instead, you should use <a href="/pagecontainer/">pagecontainer</a> methods to influence the navigation process.</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
instead of "influence the navigation process" can we change this to just navigate?
Checked with @arschmitz and we've decided to change the wording to 'navigate to another page' |
👍 |
@arschmitz Hi Alex, could you please check that I did the right thing here? And then should I squash and land? Thanks. |
looks good @agcolom you are all set to squash and push this 👍 |
Fixes gh-289