Skip to content

Commit

Permalink
Pass listeners to inner invoke
Browse files Browse the repository at this point in the history
Fixes #389.
  • Loading branch information
annevk committed Jan 14, 2017
1 parent 3fde24e commit 627eeaa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dom.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1318,7 +1318,7 @@ for discussion).
<li><p>Initialize <var>event</var>'s {{Event/currentTarget}} attribute to <var>object</var>.

<li><p>Let <var>found</var> be the result of running <a>inner invoke</a> <var>object</var> with
<var>event</var>.
<var>event</var> and <var>listeners</var>.

<li>
<p>If <var>found</var> is false, run these substeps:
Expand All @@ -1342,14 +1342,14 @@ for discussion).
<tr><td>"<code>transitionend</code>"<td>"<code>webkitTransitionEnd</code>"
</table>

<li><p><a>Inner invoke</a> <var>object</var> with <var>event</var>.
<li><p><a>Inner invoke</a> <var>object</var> with <var>event</var> and <var>listeners</var>.

<li><p>Set <var>event</var>'s {{Event/type}} attribute value to <var>originalEventType</var>.
</ol>
</ol>

<p>To <dfn noexport for="event listener" id=concept-event-listener-inner-invoke>inner invoke</dfn>
an <var>object</var> with <var>event</var>, run these steps:
<p>To <dfn noexport id=concept-event-listener-inner-invoke>inner invoke</dfn> an <var>object</var>
with <var>event</var> and <var>listeners</var>, run these steps:

<ol>
<li><p>Let <var>found</var> be false.
Expand Down

0 comments on commit 627eeaa

Please sign in to comment.