diff --git a/_includes/js/placard.html b/_includes/js/placard.html
index d9dcc8610..492cd47a9 100644
--- a/_includes/js/placard.html
+++ b/_includes/js/placard.html
@@ -190,11 +190,11 @@
Events
- accept.fu.placard |
+ accepted.fu.placard |
Fires when the user indicates the desire to 'accept' changes. This event fires after the onAccept function, if defined. |
- cancel.fu.placard |
+ canceled.fu.placard |
Fires when the user indicates the desire to 'cancel' changes. This event fires after the onCancel function, if defined. |
@@ -210,7 +210,7 @@ Events
All placard events are fired on the .placard
classed element.
{% highlight js %}
-$('#myPlacard').on('accept.fu.placard', function () {
+$('#myPlacard').on('accepted.fu.placard', function () {
// do something…
});
{% endhighlight %}