Great progress!
Can you make heads or tails out of this behavior when you try to click
those links, like the top15s or the schedule? It takes you to a
netherworld of size 0, and you have to back up with ^. It's as though you
went to an empty frame, or like when you add additional ed environments
for editing.
Here's the code for the click handler which has been added to "a"
elements. It's in the file menus.js. I don't think a click is triggering
this code, because I added some alerts and they don't show up.
function parse_menu_item(url, externalURL, soundURL){
//if(soundURL) playSound(soundURL);
if(externalURL){
window.open(externalURL); // open url in external window only
return false; // no need to proceed
}else if(url == "donate.html"){
slidePopupPanel();
}else{
window.location.hash = url; // apply hash to address bar
}
}
Maybe it's something to do with the hash change. Is that supposed to
trigger http action to a new destination?
K
_______________________________________________
Edbrowse-dev mailing list
[email protected]
http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev