Commit ccc78f3b authored by Tatuya Kamada's avatar Tatuya Kamada

py2zope4: Fix an invalid usage in Pagetemplate checked in erp5_corporate_identity_test

Add a missing ';' in <script> tags.
parent 4f83a222
...@@ -46,7 +46,7 @@ Creates the Book header. ...@@ -46,7 +46,7 @@ Creates the Book header.
if (pic.naturalWidth / pic.naturalHeight <= 1) { if (pic.naturalWidth / pic.naturalHeight <= 1) {
pic.style.width = "auto"; pic.style.width = "auto";
pic.style.maxWidth = "28mm"; pic.style.maxWidth = "28mm";
pic.style.maxHeight = "28mm" pic.style.maxHeight = "28mm";
pic.style.height = "auto"; pic.style.height = "auto";
} }
} }
...@@ -112,4 +112,4 @@ Creates the Book header. ...@@ -112,4 +112,4 @@ Creates the Book header.
</table> </table>
</tal:block> </tal:block>
</tal:block> </tal:block>
</tal:block> </tal:block>
\ No newline at end of file
...@@ -45,7 +45,7 @@ Creates the Contract header. ...@@ -45,7 +45,7 @@ Creates the Contract header.
if (pic.naturalWidth / pic.naturalHeight <= 1) { if (pic.naturalWidth / pic.naturalHeight <= 1) {
pic.style.width = "auto"; pic.style.width = "auto";
pic.style.maxWidth = "28mm"; pic.style.maxWidth = "28mm";
pic.style.maxHeight = "28mm" pic.style.maxHeight = "28mm";
pic.style.height = "auto"; pic.style.height = "auto";
} }
} }
...@@ -80,4 +80,4 @@ Creates the Contract header. ...@@ -80,4 +80,4 @@ Creates the Contract header.
</table> </table>
</tal:block> </tal:block>
</tal:block> </tal:block>
</tal:block> </tal:block>
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment