quitting react router

This commit is contained in:
Eric Hulburd
2016-03-02 12:07:31 -06:00
parent d650baab6d
commit 5b218f6518
17 changed files with 164 additions and 186 deletions

View File

@@ -31,16 +31,16 @@
type="button" class="btn btn-primary">Table</button>
</div>
<div rt-if="this.context.house">
<div rt-if="this.house">
<h4>Select dates:</h4>
<div class="btn-group">
<button
rt-repeat="year in this.context.house.years"
rt-repeat="year in this.house.years"
data-param="year"
data-value="{year}"
key="data-year-{year}"
class="btn-info btn btn-sm"
rt-class="{active: year == this.context.house.state.year}"
rt-class="{active: year == this.house.state.year}"
onClick="{this.setParam.bind(this)}">{year}</button>
</div>
</div><br/>