ria
Version:
Node tool for developing RIA Apps using the RIA app framework. Helps initialize the app and create modules using UI templates and archetecture.
25 lines (21 loc) • 546 B
JavaScript
(
function(){
var moduleName='helloWorld';
function render(el){
el.addEventListener(
'click',
handleClicks
);
}
function handleClicks(e){
if(!e.target.id)
return;
switch(e.target.id){
case 'findCheech' :
app.navigate('davesNotHereMan');
break;
}
}
exports(moduleName,render);
}
)();