From 9601f05424baf0c457b44310d80115deeb8aa1b7 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Wed, 11 Aug 2010 05:10:34 -0400
Subject: [PATCH] - Two fixes for Konqueror
---
program/js/app.js | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/program/js/app.js b/program/js/app.js
index c4966ee..6266c33 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -1759,11 +1759,11 @@
this.show_contentframe = function(show)
{
- var frm;
+ var frm, win;
if (this.env.contentframe && (frm = $('#'+this.env.contentframe)) && frm.length) {
- if (!show && window.frames[this.env.contentframe]) {
- if (window.frames[this.env.contentframe].location.href.indexOf(this.env.blankpage)<0)
- window.frames[this.env.contentframe].location.href = this.env.blankpage;
+ if (!show && (win = window.frames[this.env.contentframe])) {
+ if (win.location && win.location.href.indexOf(this.env.blankpage)<0)
+ win.location.href = this.env.blankpage;
}
else if (!bw.safari && !bw.konq)
frm[show ? 'show' : 'hide']();
@@ -3725,7 +3725,7 @@
this.name_input_li.insertAfter(li);
}
- this.name_input.select();
+ this.name_input.select().focus();
};
this.group_rename = function()
@@ -3745,7 +3745,7 @@
}
}
- this.name_input.select();
+ this.name_input.select().focus();
};
this.group_delete = function()
@@ -3904,7 +3904,7 @@
if (action=='edit-identity' && (!id || id==this.env.iid))
return false;
- var add_url = '', target = window;
+ var add_url = '', target = window;
if (this.env.contentframe && window.frames && window.frames[this.env.contentframe]) {
add_url = '&_framed=1';
--
Gitblit v1.9.1