Stop event propagation based on http://www.quirksmode.org/js/events_order.html
authorJoey Schulze <joey@infodrom.org>
Fri, 25 Dec 2009 16:38:28 +0000 (17:38 +0100)
committerJoey Schulze <joey@infodrom.org>
Fri, 25 Feb 2011 17:40:23 +0000 (18:40 +0100)
lib/basics.js

index 886e103..d548e3d 100644 (file)
@@ -14,6 +14,13 @@ function style_adjust(styles)
     }
 }
 
+function stop_propagation(e)
+{
+    if (!e) var e = window.event;
+    e.cancelBubble = true;
+    if (e.stopPropagation) e.stopPropagation();
+}
+
 /*
  * Small AJAX framework
  */