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

View File

@@ -7,8 +7,7 @@
<tr>
<th>Name</th>
<th>Type</th>
<th>Get</th>
<th>Set</th>
<th>Settable</th>
<th>Event</th>
<th class="last">Description</th>
</tr>
@@ -19,7 +18,6 @@
var self = this;
props.forEach(function(prop) {
if (!prop) { return; }
var getter = 'yes';
var setter = prop.readonly ? 'no' : 'yes';
?>
@@ -30,7 +28,6 @@
<?js= self.partial('type.tmpl', prop.type.names) ?>
<?js } ?>
</td>
<td class="getter"><?js= getter ?></td>
<td class="setter"><?js= setter ?></td>
<td class="event"><code>change:<?js= prop.name ?></code></td>
<td class="description last"><?js= prop.description ?></td>