Added height: auto

Signed-off-by: Duncan Lock <duncan.lock@gmail.com>
This commit is contained in:
Duncan Lock
2013-04-23 16:48:50 -07:00
parent 33951b40f2
commit ec7384fb4e

View File

@@ -38,7 +38,7 @@ def content_object_init(instance):
# There must be a setting that I should be using?
src = instance.settings['PATH'] + '/images/' + os.path.split(img['src'])[1]
im = Image.open(src)
extra_style = 'width: {}px;'.format(im.size[0])
extra_style = 'width: {}px; height: auto;'.format(im.size[0])
if img.get('style'):
img['style'] += extra_style
else: