We don't need `content` here because it uses an ObjectController as a proxy.

This commit is contained in:
Robin Ward 2013-02-28 10:00:54 -05:00
parent 46a02ae5b1
commit 3b47562738
1 changed files with 5 additions and 5 deletions

View File

@ -1,13 +1,13 @@
{{#if content.loaded}}
<h3>{{content.title}}</h3>
{{#if loaded}}
<h3>{{title}}</h3>
<table class='table'>
<tr>
<th>{{content.xaxis}}</th>
<th>{{content.yaxis}}</th>
<th>{{xaxis}}</th>
<th>{{yaxis}}</th>
</tr>
{{#each content.data}}
{{#each data}}
<tr>
<td>{{x}}</td>
<td>{{y}}</td>