Closed GoogleCodeExporter closed 9 years ago
The example code (in example.js) uses a hash parameter to track when the user
has seen the bookmark bubble. This is known to be incompatible with jQuery
Mobile. This comment in bookmark_bubble.js explains:
* NOTE: Using a hash parameter to track whether the bubble has been shown
* conflicts with the navigation system in jQuery Mobile. If you are using that
* library, you should implement this function to track the bubble's status in
* a different way, e.g. using window.localStorage in HTML5.
Try changing the setHashParameter() method on your Bubble object to not
actually modify the hash. Details are given in issue 7.
Original comment by ntho...@google.com
on 18 Jan 2011 at 1:57
thanks for the reply i have changed like this:
bubble.setHashParameter = function() {
if (!this.hasHashParameter()) {
window.localStorage += parameter;/* change for works with jquery mobile*/
and it works !! thanks
Original comment by S3BHO...@gmail.com
on 18 Jan 2011 at 11:58
How is localStorage supposed to replicate the behaviour of the hash changing?
You would change the localStorage in any case and thus never know whether the
user comes from a bookmark or just manually revisits your page.
Original comment by myr...@gmail.com
on 27 May 2011 at 11:05
You're right, using localStorage instead of the hash does have the disadvantage
that you can't tell if the user came from the bookmark or not. It does,
however, still let you keep track of whether the bubble has been shown before,
in order to avoid annoying users by showing the bubble every time they come
back to your webpage.
Original comment by ntho...@google.com
on 28 May 2011 at 7:03
Thanks for showing how to fix this, I too was having problems, and know very
little javascript.
So thanks again :)
Original comment by coop...@gmail.com
on 6 Jun 2011 at 1:47
Glad I found this post as it stopped the "Error Loading Page" when the web app
first loads. However it still throws the error message when you use the close
icon.
Any idea how to also stop this?
Thanks, John
Original comment by dbrawl...@googlemail.com
on 29 Jul 2011 at 10:51
Original issue reported on code.google.com by
S3BHO...@gmail.com
on 17 Jan 2011 at 8:01