Remove unnecessary Get column from observables

This commit is contained in:
Paul Spencer
2013-10-28 16:12:08 -04:00
parent e858727bd0
commit d18119d98b
+1 -4
View File
@@ -7,8 +7,7 @@
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Type</th> <th>Type</th>
<th>Get</th> <th>Settable</th>
<th>Set</th>
<th>Event</th> <th>Event</th>
<th class="last">Description</th> <th class="last">Description</th>
</tr> </tr>
@@ -19,7 +18,6 @@
var self = this; var self = this;
props.forEach(function(prop) { props.forEach(function(prop) {
if (!prop) { return; } if (!prop) { return; }
var getter = 'yes';
var setter = prop.readonly ? 'no' : 'yes'; var setter = prop.readonly ? 'no' : 'yes';
?> ?>
@@ -30,7 +28,6 @@
<?js= self.partial('type.tmpl', prop.type.names) ?> <?js= self.partial('type.tmpl', prop.type.names) ?>
<?js } ?> <?js } ?>
</td> </td>
<td class="getter"><?js= getter ?></td>
<td class="setter"><?js= setter ?></td> <td class="setter"><?js= setter ?></td>
<td class="event"><code>change:<?js= prop.name ?></code></td> <td class="event"><code>change:<?js= prop.name ?></code></td>
<td class="description last"><?js= prop.description ?></td> <td class="description last"><?js= prop.description ?></td>