Documentation
List
list.item #
element | Dom | Dom element of the created item. |
Occurs whenever a list item is created in the list.
ArticleEditor('#entry', {
css: '/your-article-dist-path/',
subscribe: {
'list.item': function(event) {
var $item = event.get('element');
}
}
});