全てのリンクからタブを開く動作がアクセルキーで反転された時以外にまで
余計な読み込みが行われてしまっていたのを修正 (SVG要素のXLinkなど、標準では無視される物がリンクとして読み込まれていた) git-svn-id: http://www.cozmixng.org/repos/piro/treestyletab/trunk@3514 599a83e7-65a4-db11-8015-0010dcdd6dc2
This commit is contained in:
parent
577ac9eb5b
commit
e0bb663758
@ -1263,21 +1263,25 @@ catch(e) {
|
||||
}) ? true : (TreeStyleTabService.readyToOpenChildTab(), false)
|
||||
]]></>
|
||||
).replace(
|
||||
/* あらゆるリンクからタブを開く設定の時に、アクセルキーが押されていた場合は
|
||||
反転された動作(通常のリンク読み込み)を行う */
|
||||
'return false;case 1:',
|
||||
<><![CDATA[
|
||||
if (!('TMP_contentAreaClick' in window) && // do nothing for Tab Mix Plus
|
||||
TreeStyleTabService.checkToOpenChildTab()) {
|
||||
TreeStyleTabService.stopToOpenChildTab();
|
||||
if (linkNode)
|
||||
urlSecurityCheck(href,
|
||||
'nodePrincipal' in linkNode.ownerDocument ?
|
||||
linkNode.ownerDocument.nodePrincipal :
|
||||
linkNode.ownerDocument.location.href
|
||||
);
|
||||
var postData = {};
|
||||
href = getShortcutOrURI(href, postData);
|
||||
if (!href) return false;
|
||||
loadURI(href, null, postData.value, false);
|
||||
if (TreeStyleTabService.isAccelKeyPressed(event)) {
|
||||
if (linkNode)
|
||||
urlSecurityCheck(href,
|
||||
'nodePrincipal' in linkNode.ownerDocument ?
|
||||
linkNode.ownerDocument.nodePrincipal :
|
||||
linkNode.ownerDocument.location.href
|
||||
);
|
||||
var postData = {};
|
||||
href = getShortcutOrURI(href, postData);
|
||||
if (!href) return false;
|
||||
loadURI(href, null, postData.value, false);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
case 1:
|
||||
|
Loading…
x
Reference in New Issue
Block a user