equal
deleted
inserted
replaced
|
1 <%# vim: set nosta noet ts=4 sw=4 ft=html: %> |
|
2 |
|
3 <fieldset> |
|
4 <legend>Application Behavior</legend> |
|
5 <table cellpadding="0" cellspacing="0"> |
|
6 <tbody> |
|
7 <% $.each( bool_prefs, function( pref, vals ) { %> |
|
8 <tr> |
|
9 <td class="desc"><label for="<%= pref %>_id"><%= vals[ 1 ] %><span></span></label></td> |
|
10 <td><input id="<%= pref %>_id" type="checkbox" <%= vals[0] ? 'checked' : '' %> data-field="<%= pref %>" /></td> |
|
11 </tr> |
|
12 <% }) %> |
|
13 </tbody> |
|
14 </table> |
|
15 </fieldset> |
|
16 |