12 lines
No EOL
228 B
JavaScript
12 lines
No EOL
228 B
JavaScript
app.pages.Framer = app.views.Base.extend({
|
|
templateName : "framer",
|
|
|
|
events : {
|
|
"click button.done" : "saveFrame"
|
|
},
|
|
|
|
saveFrame : function(){
|
|
console.log(app.frame.toJSON(), app.frame)
|
|
app.frame.save()
|
|
}
|
|
}) |