From 09a3e9403732a01ee3bc0834997d2133d7bba849 Mon Sep 17 00:00:00 2001 From: Eva Balycheva Date: Sat, 24 Oct 2015 02:47:45 +0300 Subject: [PATCH] Fix parsing 'space' argument --- src/jquery.typedText.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.typedText.js b/src/jquery.typedText.js index 5dab7d9..9672f15 100644 --- a/src/jquery.typedText.js +++ b/src/jquery.typedText.js @@ -67,7 +67,7 @@ case "number": // Check if the var that holds the desired amount of time -- that should // pass between each letter being displayed -- has not been set yet - if(givenArgs.space !== 66) { + if(givenArgs.space !== currentArg) { givenArgs.space = currentArg; } break;