Skip to content

Commit

Permalink
fix(tickets): attachments loader not initializing
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Apr 28, 2019
1 parent 0666f8e commit bd949b7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/public/js/pages/pageloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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()
}
Expand Down

0 comments on commit bd949b7

Please sign in to comment.