From bd949b7ced3507167a5387963605519e78771c67 Mon Sep 17 00:00:00 2001 From: Chris Brame Date: Sun, 28 Apr 2019 01:29:04 -0400 Subject: [PATCH] fix(tickets): attachments loader not initializing --- src/public/js/pages/pageloader.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/public/js/pages/pageloader.js b/src/public/js/pages/pageloader.js index e7389a76c..f0d66d8a0 100644 --- a/src/public/js/pages/pageloader.js +++ b/src/public/js/pages/pageloader.js @@ -50,7 +50,7 @@ define('pages/pageloader', ['async', 'jquery'], function (async, $) { 'modules/ajaximgupload', 'modules/attachmentUpload' - ], function (a, b, c, d, e, f, g, h, i, j, k, l, m) { + ], function (a, b, c, d, e, f, g, h, i, j, k, l, m, n) { async.parallel( [ function (done) { @@ -87,8 +87,11 @@ define('pages/pageloader', ['async', 'jquery'], function (async, $) { k.init(done) }, function (done) { - l.init() + l.init(done) + }, + function (done) { m.init() + n.init() return done() }