templates getting rendered properly
This commit is contained in:
parent
358414371e
commit
09704291e9
2 changed files with 15 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
app.pages.Framer = app.views.Base.extend({
|
app.pages.Framer = app.views.Base.extend({
|
||||||
templateName : "framer",
|
templateName : "framer",
|
||||||
|
|
||||||
|
id : "post-content",
|
||||||
|
|
||||||
events : {
|
events : {
|
||||||
"click button.done" : "saveFrame"
|
"click button.done" : "saveFrame"
|
||||||
},
|
},
|
||||||
|
|
@ -29,4 +31,4 @@ app.pages.Framer = app.views.Base.extend({
|
||||||
saveFrame : function(){
|
saveFrame : function(){
|
||||||
this.model.save()
|
this.model.save()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -792,3 +792,15 @@ text-rendering: optimizelegibility;
|
||||||
.aspect_selector {
|
.aspect_selector {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.post-view {
|
||||||
|
display: table;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#post-content {
|
||||||
|
button {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue