svnno****@sourc*****
svnno****@sourc*****
2011年 9月 15日 (木) 20:22:07 JST
Revision: 2952
http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2952
Author: dhrname
Date: 2011-09-15 20:22:06 +0900 (Thu, 15 Sep 2011)
Log Message:
-----------
0.85beta修正
Modified Paths:
--------------
branches/08x/sie.js
Modified: branches/08x/sie.js
===================================================================
--- branches/08x/sie.js 2011-09-15 11:19:26 UTC (rev 2951)
+++ branches/08x/sie.js 2011-09-15 11:22:06 UTC (rev 2952)
@@ -985,7 +985,7 @@
this._capter.push(s); //このノードにリスナーを登録しておく
if ((t !== "D") && (t !== "S") && (type !== "beginEvent") && (type !== "endEvent") && (type !== "repeatEvent")) { //MouseEventsならば
that = this;
- that._tar && that._tar.attachEvent("on" +type, (function(node) {
+ that._tar && that._tar.attachEvent("on" +type, (function(node, type) {
return function(){
var evt = node.ownerDocument.createEvent("MouseEvents");
evt.initMouseEvent(type, true, true, node.ownerDocument.defaultView, 0);
@@ -994,7 +994,7 @@
node.ownerDocument._window.event.cancelBubble = true;
evt = null;
};
- })(that)
+ })(that, type)
);
}
type = listener = useCapture = s = t = that = null;