svnno****@sourc*****
svnno****@sourc*****
2010年 3月 18日 (木) 19:41:19 JST
Revision: 1739
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1739
Author: dhrname
Date: 2010-03-18 19:41:19 +0900 (Thu, 18 Mar 2010)
Log Message:
-----------
DOMExceptionのメッセージ文章を追加
Modified Paths:
--------------
branches/ufltima/dom/events.js
Modified: branches/ufltima/dom/events.js
===================================================================
--- branches/ufltima/dom/events.js 2010-03-18 10:38:39 UTC (rev 1738)
+++ branches/ufltima/dom/events.js 2010-03-18 10:41:19 UTC (rev 1739)
@@ -96,9 +96,12 @@
*/
function EventException() {
DOMException.call(this,arguments);
+ if (this.code === 0) {
+ this.message = "Uuspecified Event Type Error (イベントの型を定義されましたか)";
+ }
return this;
};
-/*unsigned short*/ EventException.UNSPECIFIED_EVENT_TYPE_ERR = 0; //イベントの型が定義されていないエラー
+/*unsigned short*/ EventException.UNSPECIFIED_EVENT_TYPE_ERR = 0;
EventException.prototype = new DOMException();
EventException.constructor = DOMException;