harness/app-assets/templates/assets/js/football.js (21 lines of code) (raw):
define([
'bootstraps/common',
'bootstraps/football',
'bootstraps/liveblog'
], function (
common,
football,
liveblog
) {
'use strict';
var module = {
init: function () {
common.init();
football.init();
if (document.getElementsByClassName('article__body--liveblog').length > 0) {
liveblog.init(common);
}
}
};
return module;
});