svnno****@sourc*****
svnno****@sourc*****
2011年 10月 7日 (金) 23:38:14 JST
Revision: 2983
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2983
Author: dhrname
Date: 2011-10-07 23:38:13 +0900 (Fri, 07 Oct 2011)
Log Message:
-----------
svgファイルへのリンクをクリックしたときに発生するバグを修正
Modified Paths:
--------------
branches/08x/087/org/w3c/dom/svg.js
Modified: branches/08x/087/org/w3c/dom/svg.js
===================================================================
--- branches/08x/087/org/w3c/dom/svg.js 2011-10-05 12:07:26 UTC (rev 2982)
+++ branches/08x/087/org/w3c/dom/svg.js 2011-10-07 14:38:13 UTC (rev 2983)
@@ -4918,9 +4918,14 @@
}
NAIBU.doc = new ActiveXObject("MSXML2.DomDocument");
evt.preventDefault();
- ob._next = {_init: function () {
- document.title = ob.getSVGDocument().title;
- }};
+ ob._next = {
+ _init: (function (ob) {
+ return (function(){
+ document.title = ob.getSVGDocument().title;
+ ob = void 0;
+ });
+ })(ob)
+ };
ob._init();
sd = ob = nd = void 0;
}