mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
lint: pad_userlist.js arrow functions
This probably needs a good rewrite/refactor to remove self.
This commit is contained in:
parent
2511eed472
commit
77b2f372ab
1 changed files with 5 additions and 5 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue