Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ <h5 class="mdl-typeography--headline">Code Example</h5>
// The click event is in the event variable, so you can use it here.
ev.preventDefault();

// The value entered is availble in the val variable.
// The value entered is available in the val variable.
alertify.success("You've clicked OK and typed: " + val);

}, function(ev) {
Expand Down Expand Up @@ -430,7 +430,7 @@ <h5 class="mdl-typeography--headline">Standard Log with callback</h5>
Keep in mind that the when setting a callback, clicking the log message
doesn't automatically close the log message, which is different than
previous functionality. This means that the callback could be called
multiple times if the user clicks multiple times. If you're callback is
multiple times if the user clicks multiple times. If your callback is
an action that must be completed only once, you'll need to keep track
of that separately.
</p>
Expand Down