Remove whitespace from css_class template helper.

This commit is contained in:
Max Goodman
2012-12-19 16:23:13 -08:00
committed by bsimpson63
parent 1bbee79522
commit 6b4a2cb4ab

View File

@@ -53,9 +53,7 @@
id="${arg}_${thing and thing._fullname or ''}"
</%def>
<%def name="css_class(thing)">
${' '+thing.css_class if hasattr(thing, 'css_class') and thing.css_class else ''}
</%def>
<%def name="css_class(thing)">${' '+thing.css_class if hasattr(thing, 'css_class') and thing.css_class else ''}</%def>
<%def name="submit_form(onsubmit='', action='', _class='', method='post', _id='', **params)">
<form class="${_class or ''}" onsubmit="${onsubmit or ''}"