Skip to content

Instantly share code, notes, and snippets.

@s6577t
s6577t / view_example.js
Created June 8, 2012 15:57 — forked from markevans/view_example.js
Example use of a view, using the class stuff
define(['view'], function(View){
return View.sub('ItemView', function(){
this.domEvent('click', 'button', 'selected')
})
})