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.
if (pic.naturalWidth / pic.naturalHeight <= 1) {
pic.style.width = "auto";
pic.style.maxWidth = "28mm";
pic.style.maxHeight = "28mm"
pic.style.maxHeight = "28mm";
pic.style.height = "auto";
}
}
......
......@@ -45,7 +45,7 @@ Creates the Contract header.
if (pic.naturalWidth / pic.naturalHeight <= 1) {
pic.style.width = "auto";
pic.style.maxWidth = "28mm";
pic.style.maxHeight = "28mm"
pic.style.maxHeight = "28mm";
pic.style.height = "auto";
}
}
......
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