Remove invalid {css $name} syntax

{css $foo} does not do anything. the correct syntax is

{css selector} (no dollar sign)
or
{css $prefix, selector}

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=152375039
This commit is contained in:
Ben McIlwain 2017-04-06 06:32:14 -07:00
parent 2be31e79ef
commit bd696b4b92

View file

@ -32,7 +32,6 @@
</label> </label>
<input id="{$name}" <input id="{$name}"
name="{$name}" name="{$name}"
class="{css $name}"
{if isNonnull($item) and isNonnull($item[$name])} {if isNonnull($item) and isNonnull($item[$name])}
value="{$item[$name]}" value="{$item[$name]}"
{/if} {/if}