Open GoogleCodeExporter opened 8 years ago
It works if I change
getCurrentLocation: function() {
var r = (this.isSafari
? this.getSafariState()
: this.getCurrentHash()
);
return r;
}
to
getCurrentLocation: function() {
return this.getCurrentHash();
}
Obviously, I'm probably breaking other things. But hopefully this might lead
to a
solution.
Original comment by JustinBMeyer@gmail.com
on 20 Feb 2008 at 6:47
As far as I can tell, the following should work for all browser:
getCurrentLocation: function() {
if (this.isSafari)
return (this.getSafariState()) ? this.getSafariState() : this.getCurrentHash();
return this.getCurrentHash();
}
Or am breaking something I can't see?
Original comment by myrl...@gmail.com
on 2 Apr 2008 at 2:05
@myrlund : the fixed you provided seems appropriate, it does fix the problem in
my use case. Thanks
Original comment by olivier....@gmail.com
on 8 Sep 2011 at 3:46
Original issue reported on code.google.com by
JustinBMeyer@gmail.com
on 20 Feb 2008 at 6:13