Higher level dom event delegation management based on EventManager.
$ component install component/delegates
vardelegates=require('delegates');varel=document.querySelector('ul');varview=newListView(el);functionListView(el){this.events=delegates(el,this);this.events.bind('click li','remove');}ListView.prototype.remove=function(e){varel=e.target;console.log('remove %s',el.textContent);el.parentNode.removeChild(el);};MIT