svnno****@sourc*****
svnno****@sourc*****
2009年 9月 11日 (金) 21:09:09 JST
Revision: 1238 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1238 Author: dhrname Date: 2009-09-11 21:09:09 +0900 (Fri, 11 Sep 2009) Log Message: ----------- attachEventn部分の修正 Modified Paths: -------------- branches/05x/051/sie.js Modified: branches/05x/051/sie.js =================================================================== --- branches/05x/051/sie.js 2009-09-10 13:10:14 UTC (rev 1237) +++ branches/05x/051/sie.js 2009-09-11 12:09:09 UTC (rev 1238) @@ -1849,14 +1849,14 @@ if (this.beginEvent.event !== "") { tb = this.beginEvent; tb.indefinite = true; //これにより、イベントが起きるまで作動を待たせる - this.tar.parentNode.attachEvent(tb.event,(function(){ + this.tar.parentNode.attachEvent("on" +tb.event,(function(){ tb.indefinite = false; })); } if (this.endEvent.event !== "") { tb = this.endEvent; tb.indefinite = true; - this.tar.parentNode.attachEvent(tb.event,(function(){ + this.tar.parentNode.attachEvent("on" +tb.event,(function(){ tb.indefinite = false; })); }