Browse Source

forgot to import this as well

pull/2/head
gorhill 9 years ago
parent
commit
bf7762ba0f
  1. 4
      platform/firefox/vapi-common.js

4
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);
};
/******************************************************************************/

Loading…
Cancel
Save