|
Re: double history fix [message #17500 is a reply to message #17499] |
Thu, 01 April 2004 03:27 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Does this not cause the problem?
(Will need to try it out).
FUDforum Core Developer
|
|
|
|
|
Re: double history fix [message #17503 is a reply to message #17502] |
Thu, 01 April 2004 15:02 |
AzaToth
Messages: 125 Registered: October 2003
Karma: 0
|
Senior Member |
|
|
Ilia wrote on Thu, 01 April 2004 16:57 | The change you propose does not work in KHTML (Konqueror & Safari) as well as Opera. In Mozilla FireFox it works, BUT the back button issue is still there, so nothing is fixed. I didn't bother trying it in IE due to the above mentioned problems.
|
for us there is no back-issue, did you remove the first line? you can not have both, you must choose one of them. either the new one or the old.
edit: ok, it wont work in those browser, it's because !OPERA in js.
[Updated on: Thu, 01 April 2004 15:05] Report message to a moderator
|
|
|
|
|
|
|
Re: double history fix [message #31973 is a reply to message #17515] |
Mon, 29 May 2006 03:32 |
Anonymous
|
|
|
|
AzaToth wrote on Thu, 01 April 2004 14:47 |
Ilia wrote on Thu, 01 April 2004 18:43 | I've removed the OPERA exclusion code etc... but it still does not work in Opera and Konqueror and does not resolve the back history issue in other browsers.
|
hmm, strage, perhaps this then:
function fud_msg_focus(mid_hash)
{
if(OPERA && IE4 && !window.location.hash)
{
window.location.href = window.location.href + '#' + mid_hash;
}
else if (!window.location.hash) {
//window.location.hash = mid_hash;
window.location.replace(window.location.href + '#' + mid_hash);
}
}
|
|
|
|