diff --git a/website/index.html b/website/index.html index 0f8e4e23..ca891a47 100644 --- a/website/index.html +++ b/website/index.html @@ -223,7 +223,7 @@
Code Example
// 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) { @@ -430,7 +430,7 @@
Standard Log with callback
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.