Documentation typo - EditableList Widget - resizeItem
scottpageindysoft opened this issue · 3 comments
scottpageindysoft commented
console is misspelled.
$("ol.list").editableList({ resizeItem: function(row,index) { var originalData = $(row).data('data'); consol.log("Resize the row for item:", originalData) } });
Should read: console.log("Resize the row for item:", originalData)
knolleary commented
Moved to the repo for the docs.
If you wanted to PR the fix, the file is here: https://github.com/node-red/node-red.github.io/blob/master/docs/api/ui/editableList/index.md
scottpageindysoft commented
@knolleary thanks! I'm getting used to the repository structure.
I'll PR it.