projects
/
horde.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03813ed
)
Don't target the frameset when redirecting.
author
Jan Schneider
<jan@horde.org>
Wed, 12 May 2010 14:38:21 +0000
(16:38 +0200)
committer
Jan Schneider
<jan@horde.org>
Wed, 12 May 2010 14:38:21 +0000
(16:38 +0200)
kronolith/js/kronolith.js
patch
|
blob
|
history
diff --git
a/kronolith/js/kronolith.js
b/kronolith/js/kronolith.js
index
c7d8724
..
40ae3a5
100644
(file)
--- a/
kronolith/js/kronolith.js
+++ b/
kronolith/js/kronolith.js
@@
-242,13
+242,11
@@
KronolithCore = {
redirect: function(url, force)
{
- var ptr = parent.frames.horde_main ? parent : window;
-
- ptr.location.assign(this.addURLParam(url));
+ window.location.assign(this.addURLParam(url));
// Catch browsers that don't redirect on assign().
if (force && !Prototype.Browser.WebKit) {
- (function() {
ptr
.location.reload(); }).delay(0.5);
+ (function() {
window
.location.reload(); }).delay(0.5);
}
},