From 7cd07e598f2e383cdb0342b04afe00e31f267259 Mon Sep 17 00:00:00 2001 From: Stefan Gebhardt Date: Wed, 5 Oct 2011 22:22:10 +0200 Subject: [PATCH] This will fix issue 1383 --- js/jquery.mobile.navigation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/jquery.mobile.navigation.js b/js/jquery.mobile.navigation.js index 26e24ad331f..9aa37fa6845 100755 --- a/js/jquery.mobile.navigation.js +++ b/js/jquery.mobile.navigation.js @@ -180,7 +180,7 @@ //set location hash to path set: function( path ) { - location.hash = path; + location.hash = jQuery.browser.mozilla ? escape(path) : path; }, //test if a given url (string) is a path