this.zap.on({ // events used by this specific application's life-cycle:
// an item was saved by you:
save: function(o){
editor.reset(); // clear out form
toolBar.classList.add("hidden");
},
// an item was updated or created by anyone:
item: function(o){
zap.list(); // update list
},
// updated list data has arrived from anyone:
list: function(arr){
listView.innerHTML=""; // clear out old list
arr.map(tmpl.append); // rebuild new list from incoming data
}
}); // end application events
Back to DemosVeneer Home