Closed GoogleCodeExporter closed 8 years ago
The problem is these lines in your bubble.js:
bubble.setHashParameter = function() { }
bubble.hasHashParameter = function() {
return false;
}
Because of the way you've defined these functions, the bubble has no way of
knowing if it has been shown, so it will continue to appear even after you
create the bookmark. Note that if you dismiss the bubble a couple of times, it
won't come back.
You could fix this by defining those two functions to actually set and check
the value of the hash, as in the example posted on this site.
Original comment by ntho...@google.com
on 4 Jul 2011 at 12:12
Thanks for the reply. I used the definitions from example.js and it is now
working perfect.
Thanks again.
Original comment by samuel.n...@gmail.com
on 4 Jul 2011 at 12:29
Original issue reported on code.google.com by
samuel.n...@gmail.com
on 29 Jun 2011 at 8:17