1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-24 06:59:52 +01:00

wombat: replace window.self -> window for clarity

This commit is contained in:
Ilya Kreymer 2015-02-11 15:01:04 -08:00
parent 78bd89b4cb
commit f068186e37

View File

@ -433,7 +433,7 @@ _WBWombat = (function() {
check_location_change(window.WB_wombat_location, false); check_location_change(window.WB_wombat_location, false);
// Only check top if its a different window // Only check top if its a different window
if (window.self.WB_wombat_location != window.top.WB_wombat_location) { if (window.WB_wombat_location != window.top.WB_wombat_location) {
check_location_change(window.top.WB_wombat_location, true); check_location_change(window.top.WB_wombat_location, true);
} }
@ -939,7 +939,7 @@ _WBWombat = (function() {
} }
// Location // Location
var wombat_location = new WombatLocation(window.self.location); var wombat_location = new WombatLocation(window.location);
if (wombat_location._autooverride) { if (wombat_location._autooverride) {
@ -974,12 +974,12 @@ _WBWombat = (function() {
return win; return win;
} }
if (window.self.location != window.top.location) { if (window.location != window.top.location) {
window.__orig_parent = window.parent; window.__orig_parent = window.parent;
if (is_framed) { if (is_framed) {
window.top.WB_wombat_location = window.WB_wombat_location; window.top.WB_wombat_location = window.WB_wombat_location;
window.WB_wombat_top = find_next_top(window.self); window.WB_wombat_top = find_next_top(window);
if (window.parent == window.top) { if (window.parent == window.top) {
window.parent = window; window.parent = window;