line: broadcast.js

pull/4832/head^2
John McLear 2021-02-17 16:24:47 +00:00
parent 3b5b996d84
commit d4b6cbc897
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ const hooks = require('./pluginfw/hooks');
// These parameters were global, now they are injected. A reference to the
// Timeslider controller would probably be more appropriate.
function loadBroadcastJS(socket, sendSocketMsg, fireWhenAllScriptsAreLoaded, BroadcastSlider) {
const loadBroadcastJS = (socket, sendSocketMsg, fireWhenAllScriptsAreLoaded, BroadcastSlider) => {
let goToRevisionIfEnabledCount = 0;
let changesetLoader = undefined;
@ -488,6 +488,6 @@ function loadBroadcastJS(socket, sendSocketMsg, fireWhenAllScriptsAreLoaded, Bro
receiveAuthorData(clientVars.collab_client_vars.historicalAuthorData);
return changesetLoader;
}
};
exports.loadBroadcastJS = loadBroadcastJS;