update libs
This commit is contained in:
Vendored
+1920
-2
File diff suppressed because one or more lines are too long
+5
-1
@@ -1158,7 +1158,11 @@ var Bull = Bull || {};
|
||||
|
||||
var proceed = function (layoutTemplate) {
|
||||
var injection = _.extend(layoutDefs, data || {});
|
||||
callback(_.template(layoutTemplate, injection));
|
||||
var template = _.template(layoutTemplate, injection);
|
||||
if (typeof template === 'function') {
|
||||
template = template(injection);
|
||||
}
|
||||
callback(template);
|
||||
}.bind(this);
|
||||
|
||||
var layoutTemplate = this._getCachedLayoutTemplate(layoutType);
|
||||
|
||||
Vendored
+3
-3
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user