diff --git a/src/static/js/pad_userlist.js b/src/static/js/pad_userlist.js index 074798fc..07c22334 100644 --- a/src/static/js/pad_userlist.js +++ b/src/static/js/pad_userlist.js @@ -24,8 +24,8 @@ let myUserInfo = {}; let colorPickerOpen = false; let colorPickerSetup = false; -const paduserlist = (function () { - const rowManager = (function () { +const paduserlist = (() => { + const rowManager = (() => { // The row manager handles rendering rows of the user list and animating // their insertion, removal, and reordering. It manipulates TD height // and TD opacity. @@ -290,7 +290,7 @@ const paduserlist = (function () { updateRow, }; return self; - }()); // //////// rowManager + })(); // //////// rowManager const otherUsersInfo = []; const otherUsersData = []; @@ -346,7 +346,7 @@ const paduserlist = (function () { let pad = undefined; const self = { - init(myInitialUserInfo, _pad) { + init: (myInitialUserInfo, _pad) => { pad = _pad; self.setMyUserInfo(myInitialUserInfo); @@ -543,7 +543,7 @@ const paduserlist = (function () { }, }; return self; -}()); +})(); const getColorPickerSwatchIndex = (jnode) => $('#colorpickerswatches li').index(jnode);