Checkpoint.
* Got fonts working cross platform by only using SVG. This will change
with the new webkit engine when Tide 1.4 is released.
* Use the Tide API accessors for cross-window data.
* Make the ThingFish server object an observable, so models and their
URI bases can be changed easily.
* Add options for saving window state and position.
* Contextual menu updates/tests for later.
<%# vim: set nosta noet ts=4 sw=4 ft=html: %>
<fieldset>
<legend>Application Behavior</legend>
<table cellpadding="0" cellspacing="0">
<tbody>
<% $.each( bool_prefs, function( pref, vals ) { %>
<tr>
<td class="desc"><label for="<%= pref %>_id"><%= vals[ 1 ] %><span></span></label></td>
<td><input id="<%= pref %>_id" type="checkbox" <%= vals[0] ? 'checked' : '' %> data-field="<%= pref %>" /></td>
</tr>
<% }) %>
</tbody>
</table>
</fieldset>