Browse Source

added Event.stopPropagation()

Nicolas Cannasse 14 years ago
parent
commit
db69d42311
1 changed files with 1 additions and 0 deletions
  1. 1 0
      std/js/Dom.hx

+ 1 - 0
std/js/Dom.hx

@@ -203,6 +203,7 @@ typedef Event = {
 	var ctrlKey : Bool;
 	var altKey : Bool;
 	var cancelBubble : Bool;
+	function stopPropagation() : Void; // W3C only
 }
 
 typedef FileUpload = {> FormElement,