mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
chore: Use this
to refer to itemWatchCallbackFunctions field
Solves these eslint issues: /puter/packages/puter-js/src/modules/UI.js 418:20 error 'itemWatchCallbackFunctions' is not defined no-undef 418:74 error 'itemWatchCallbackFunctions' is not defined no-undef 419:21 error 'itemWatchCallbackFunctions' is not defined no-undef
This commit is contained in:
parent
33785b3786
commit
ca65ed1258
@ -415,8 +415,8 @@ class UI extends EventListener {
|
|||||||
// Item Watch response
|
// Item Watch response
|
||||||
else if(e.data.msg === "itemChanged" && e.data.data && e.data.data.uid){
|
else if(e.data.msg === "itemChanged" && e.data.data && e.data.data.uid){
|
||||||
//excute callback
|
//excute callback
|
||||||
if(itemWatchCallbackFunctions[e.data.data.uid] && typeof itemWatchCallbackFunctions[e.data.data.uid] === 'function')
|
if(this.itemWatchCallbackFunctions[e.data.data.uid] && typeof this.itemWatchCallbackFunctions[e.data.data.uid] === 'function')
|
||||||
itemWatchCallbackFunctions[e.data.data.uid](e.data.data);
|
this.itemWatchCallbackFunctions[e.data.data.uid](e.data.data);
|
||||||
}
|
}
|
||||||
// Broadcasts
|
// Broadcasts
|
||||||
else if (e.data.msg === 'broadcast') {
|
else if (e.data.msg === 'broadcast') {
|
||||||
|
Loading…
Reference in New Issue
Block a user