From bf7762ba0ffe127a23311ccc1587b2c0fc054f69 Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 21 Jul 2015 13:37:19 -0400 Subject: [PATCH] forgot to import this as well --- platform/firefox/vapi-common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/firefox/vapi-common.js b/platform/firefox/vapi-common.js index 2d89793..89e4423 100644 --- a/platform/firefox/vapi-common.js +++ b/platform/firefox/vapi-common.js @@ -41,8 +41,8 @@ self.vAPI = self.vAPI || {}; /******************************************************************************/ -vAPI.setTimeout = vAPI.setTimeout || function(callback, delay) { - return setTimeout(function() { callback(); }, delay); +vAPI.setTimeout = vAPI.setTimeout || function(callback, delay, extra) { + return setTimeout(function(a) { callback(a); }, delay, extra); }; /******************************************************************************/