diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-09-11 14:14:49 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-09-11 14:14:49 -0400 |
commit | fe4f38b968cebbd2d1bd531b6fb3f5e3a4896b63 (patch) | |
tree | 83bc389429c007e44e18c3d6eba6077a7148bf77 /doc | |
parent | 51fb2f2d7baa17462ec6962d3a64375fb143bc11 (diff) |
New Basis functions: preventDefault and stopPropagation (code contributed by Vladimir Shabanov)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.tex | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/manual.tex b/doc/manual.tex index e6a96c05..00db43fb 100644 --- a/doc/manual.tex +++ b/doc/manual.tex @@ -1983,6 +1983,13 @@ $$\begin{array}{l} \mt{val} \; \mt{onMouseup} : \mt{transaction} \; \mt{unit} \to \mt{transaction} \; \mt{unit} \end{array}$$ +Versions of standard JavaScript functions are provided that event handlers may call to mask default handling or prevent bubbling of events up to parent DOM nodes, respectively. + +$$\begin{array}{l} + \mt{val} \; \mt{preventDefault} : \mt{transaction} \; \mt{unit} \\ + \mt{val} \; \mt{stopPropagation} : \mt{transaction} \; \mt{unit} +\end{array}$$ + \subsubsection{Node IDs} There is an abstract type of node IDs that may be assigned to \cd{id} attributes of most HTML tags. |