svnno****@sourc*****
svnno****@sourc*****
2011年 10月 13日 (木) 23:06:22 JST
Revision: 2999
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2999
Author: dhrname
Date: 2011-10-13 23:06:22 +0900 (Thu, 13 Oct 2011)
Log Message:
-----------
Eventのcallはすでに初期化できているため、削除
Modified Paths:
--------------
branches/08x/087/org/w3c/dom/events.js
Modified: branches/08x/087/org/w3c/dom/events.js
===================================================================
--- branches/08x/087/org/w3c/dom/events.js 2011-10-13 14:02:53 UTC (rev 2998)
+++ branches/08x/087/org/w3c/dom/events.js 2011-10-13 14:06:22 UTC (rev 2999)
@@ -306,7 +306,6 @@
};
function UIEvent() {
- Event.call(this, arguments);
/*views::AbstractView*/ this.view;
/*long*/ this.detail = 0;
return this;
@@ -346,7 +345,6 @@
};
function MutationEvent(){
- Event.call(this);
return this;
};
MutationEvent.prototype = new Event();