xmlterm changes only.

Changed window name in window.open call in menuhack from "XMLterm" to "_blank".
Fix for bug 36420.


git-svn-id: svn://10.0.0.236/trunk@68082 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
svn%xmlterm.org
2000-05-03 14:42:34 +00:00
parent b10cfe19e6
commit 7a698991a0

View File

@@ -29,7 +29,7 @@ open OUTFILE, ">$menufile.new" or die "menuhack: Unable to create $menufile.new\
while (<INFILE>) {
print OUTFILE unless m/XMLterm/;
if (s%(.*)"&editorCmd.label;"(.*)"toEditor\(\);"%$1"XMLterm" $2"window.open('chrome://xmlterm/content/xmlterm.xul','XMLterm','chrome,dialog=no,resizable');"%) {
if (s%(.*)"&editorCmd.label;"(.*)"toEditor\(\);"%$1"XMLterm" $2"window.open('chrome://xmlterm/content/xmlterm.xul','_blank','chrome,dialog=no,resizable');"%) {
print OUTFILE;
}
}