Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Fix for issue 1383 #2621

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion js/jquery.mobile.navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@

//set location hash to path
set: function( path ) {
location.hash = path;
location.hash = jQuery.browser.mozilla ? escape(path) : path;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure this is the proper place for this escape. We get paths from several places in the system, so we need to make sure we don't end up escaping something that may already be escaped. We'll need to discuss this amongst the group.

},

//test if a given url (string) is a path
Expand Down