show/hide this revision's text 2 deleted 33 characters in body

I think you were almost there. Have you tried:

if(window.parent) {
 

window.parent.onbeforeunload = null;
 null;
window.parent.location.replace(self.location.href);
}

or, alternatively:

window.parent.prevent_bust = 0;

Note: I didn't actually test this.

show/hide this revision's text 1

I think you were almost there. Have you tried:

if(window.parent) {
 window.parent.onbeforeunload =null;
 window.parent.location.replace(self.location.href);
}

or, alternatively:

window.parent.prevent_bust = 0;

Note: I didn't actually test this.