diff options
author | Valerio Virgillito | 2012-05-14 15:08:09 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-14 15:08:09 -0700 |
commit | 835df7fcacda5137f0953892e467e5a84f775b35 (patch) | |
tree | 46afb3964a0bf7a09b148fe210467bf45c1274bd /js/document/views | |
parent | 8d367ec7b4749ad390a0e15bb0418efc60970b54 (diff) | |
parent | a0cca95a60e71b4c35c097e0be4be9cf0814e987 (diff) | |
download | ninja-835df7fcacda5137f0953892e467e5a84f775b35.tar.gz |
Merge pull request #227 from mqg734/Dom-Architecture
Adding wrapper div for banner templates so content doesn't push through "body".
Diffstat (limited to 'js/document/views')
-rwxr-xr-x | js/document/views/design.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/document/views/design.js b/js/document/views/design.js index bff65b7f..3378ad71 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -169,7 +169,7 @@ exports.DesignDocumentView = Montage.create(BaseDocumentView, { | |||
169 | } | 169 | } |
170 | //Adjusting margin per size of document | 170 | //Adjusting margin per size of document |
171 | //this.document.head.getElementsByTagName('style')[0].innerHTML += '\n ninja-banner {overflow: visible !important; margin-top: -'+Math.floor(this._template.size.height/2)+'px; margin-left: -'+Math.floor(this._template.size.width/2)+'px}'; | 171 | //this.document.head.getElementsByTagName('style')[0].innerHTML += '\n ninja-banner {overflow: visible !important; margin-top: -'+Math.floor(this._template.size.height/2)+'px; margin-left: -'+Math.floor(this._template.size.width/2)+'px}'; |
172 | this.document.head.getElementsByTagName('style')[0].innerHTML += '\n ninja-banner {overflow: visible !important;}'; | 172 | this.document.head.getElementsByTagName('style')[0].innerHTML += '\n ninja-banner {overflow: visible !important;} ninja-banner, ninja-viewport {width: ' + this._template.size.width + 'px; height: ' + this._template.size.height + 'px;}'; |
173 | //Setting content in template | 173 | //Setting content in template |
174 | ninjaBanner.innerHTML = banner.innerHTML; | 174 | ninjaBanner.innerHTML = banner.innerHTML; |
175 | //Garbage collection | 175 | //Garbage collection |