diff options
author | Hakim El Hattab | 2012-04-30 16:34:29 -0700 |
---|---|---|
committer | Hakim El Hattab | 2012-04-30 16:34:29 -0700 |
commit | 5909c223c643ce2b65cd0066bf88778225a09840 (patch) | |
tree | de601df831f0525ae3cbbb3a2dde99d1ba1b235e /index.html | |
parent | 0acae19d1913a2616087ad4eb225264a35fb3903 (diff) | |
parent | 2caac75c62861ce2c68d2c0f2341836b2ff1aef9 (diff) |
Merge pull request #36 from commadelimited/master
Adding example for custom event bindings.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -143,6 +143,18 @@ </section> </section> + <section data-state="customevent"> + <h2>Custom Events</h2> + <p> + Additionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name. + </p> + <p><code style="font-size: 27px;"> + document.addEventListener('customevent', function(){<br /> + alert('event has fired');<br /> + }); + </code></p> + </section> + <section> <h2>Clever Quotes</h2> <p> @@ -250,6 +262,10 @@ query[ a.split( '=' ).shift() ] = a.split( '=' ).pop(); } ); + document.addEventListener('customevent', function(){ + alert('event has fired'); + }); + Reveal.initialize({ // Display controls in the bottom right corner controls: true, |