harness/app-assets/templates/assets/js/liveblog.js (16 lines of code) (raw):
define([
'bootstraps/common',
'bootstraps/liveblog'
], function (
common,
liveblog
) {
'use strict';
var module = {
init: function () {
common.init();
liveblog.init();
}
};
return module;
});