svnno****@sourc*****
svnno****@sourc*****
2011年 8月 30日 (火) 21:58:22 JST
Revision: 2904 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2904 Author: dhrname Date: 2011-08-30 21:58:22 +0900 (Tue, 30 Aug 2011) Log Message: ----------- var文の整理 Modified Paths: -------------- branches/08x/084/org/w3c/dom/events.js Modified: branches/08x/084/org/w3c/dom/events.js =================================================================== --- branches/08x/084/org/w3c/dom/events.js 2011-08-30 12:57:54 UTC (rev 2903) +++ branches/08x/084/org/w3c/dom/events.js 2011-08-30 12:58:22 UTC (rev 2904) @@ -229,7 +229,8 @@ EventListener.prototype = { /*void*/ handleEvent : function( /*Event*/ evt) { try { - var ph = evt.eventPhase, cap = this._cap; + var ph = evt.eventPhase, + cap = this._cap; if (ph === /*Event.CAPTURING_PHASE*/ 1) { //イベントフェーズが捕獲段階であることを示し cap = cap ? false : true; //このオブジェクト(EventListenr)が捕獲フェーズを指定するならば、リスナーを作動させる。指定しなければ、作動しない。 }