diff options
Diffstat (limited to 'js')
-rwxr-xr-x | js/document/templates/banner/index.html | 4 | ||||
-rwxr-xr-x | js/document/views/design.js | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/js/document/templates/banner/index.html b/js/document/templates/banner/index.html index 2cd82f51..8e8c96d6 100755 --- a/js/document/templates/banner/index.html +++ b/js/document/templates/banner/index.html | |||
@@ -60,8 +60,8 @@ | |||
60 | border: 0; | 60 | border: 0; |
61 | position: absolute; | 61 | position: absolute; |
62 | overflow: visible; | 62 | overflow: visible; |
63 | top: 50%; | 63 | top: 0; |
64 | left: 50%; | 64 | left: 0; |
65 | background: #FFF; | 65 | background: #FFF; |
66 | } | 66 | } |
67 | </style> | 67 | </style> |
diff --git a/js/document/views/design.js b/js/document/views/design.js index 16d1ac06..bff65b7f 100755 --- a/js/document/views/design.js +++ b/js/document/views/design.js | |||
@@ -168,7 +168,8 @@ exports.DesignDocumentView = Montage.create(BaseDocumentView, { | |||
168 | } | 168 | } |
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 | //Setting content in template | 173 | //Setting content in template |
173 | ninjaBanner.innerHTML = banner.innerHTML; | 174 | ninjaBanner.innerHTML = banner.innerHTML; |
174 | //Garbage collection | 175 | //Garbage collection |