From 037a47d68afaae00c97f48b1c4a0b1d1ca24e299 Mon Sep 17 00:00:00 2001 From: tjcrowder Date: Thu, 10 Sep 2009 13:15:46 +0100 Subject: [PATCH] Added missing semicolon in Function#delay. --- src/lang/function.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lang/function.js b/src/lang/function.js index 05464ca..6a09f08 100644 --- a/src/lang/function.js +++ b/src/lang/function.js @@ -236,7 +236,7 @@ Object.extend(Function.prototype, (function() { **/ function delay(timeout) { var __method = this, args = slice.call(arguments, 1); - timeout = timeout * 1000 + timeout = timeout * 1000; return window.setTimeout(function() { return __method.apply(__method, args); }, timeout);