From 8553ee6634645c683ee374f2b44ce61adf2e6508 Mon Sep 17 00:00:00 2001 From: Sinjai Date: Thu, 4 Jan 2018 15:40:29 -0600 Subject: [PATCH] Fixed minor typos in index.html --- website/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.