From 67bedf864808958d92cb0f0dc702c0418126caa2 Mon Sep 17 00:00:00 2001 From: rejas Date: Thu, 23 Apr 2020 07:24:20 +0200 Subject: [PATCH] Add missing function () --- js/module.js | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/js/module.js b/js/module.js index 40f9b311..28291a84 100644 --- a/js/module.js +++ b/js/module.js @@ -429,15 +429,10 @@ var Module = Class.extend({ options = options || {}; var self = this; - MM.showModule( - this, - speed, - function () { - self.resume(); - callback; - }, - options - ); + MM.showModule(this, speed, function () { + self.resume(); + callback(); + }, options); } });