html template fixups (#576)
* none is not a valid value for min-width, so set it to zero * these 2 "checked" if statements need a space in front of them, else they will attach to the previous element id="nd_showspeed"checked="checked" * multiple tag has no options according to https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select also, don't close select before we've gotten to the option tags * multiple tag has no options according to https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select also, don't close select before we've gotten to the option tags * just to be sure put a space in front of these optional tags as well, * $a is technically allowed but is considered not best practice
This commit is contained in:
		| @@ -44,8 +44,8 @@ | ||||
|             </div> | ||||
|             <div class="clearfix"> | ||||
|               <select class="nd_side-select nd_colored-input" size="[% class_list.size > 5 ? 5 : class_list.size %]" | ||||
|                 multiple="on" name="class" | ||||
|                 rel="tooltip" data-placement="left" data-offset="5" data-title="Module Class"/> | ||||
|                 multiple name="class" | ||||
|                 rel="tooltip" data-placement="left" data-offset="5" data-title="Module Class"> | ||||
|                 [% FOREACH opt IN class_list %] | ||||
|                 <option[% ' selected="selected"' IF class_lkp.exists(opt) %]>[% opt | html_entity %]</option> | ||||
|                 [% END %] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user