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