fossilesque@mander.xyz to Programmer Humor@lemmy.mlEnglish · 5 days agoErrorsmander.xyzimagemessage-square18fedilinkarrow-up184cross-posted to: [email protected]
arrow-up184imageErrorsmander.xyzfossilesque@mander.xyz to Programmer Humor@lemmy.mlEnglish · 5 days agomessage-square18fedilinkcross-posted to: [email protected]
minus-squaremaster5o1@lemmy.nzlinkfedilinkarrow-up1·edit-25 days agoMy assumption is that it’s setting up an object to map element selectors -> callbacks. var specialElementHandlers = { '#editor': function() { return true; } }; But yeah, could be something as var specialElementHandlers = Object.assign({}, defaultHandlers, { '#editor': function() { return true; } }; // missing closing parenthesis
My assumption is that it’s setting up an object to map element selectors -> callbacks.
var specialElementHandlers = { '#editor': function() { return true; } };
But yeah, could be something as
var specialElementHandlers = Object.assign({}, defaultHandlers, { '#editor': function() { return true; } }; // missing closing parenthesis