Skip to content

Commit

Permalink
[Debugger Plugin] Remove "Refresh" Button from Value Cards (#1017)
Browse files Browse the repository at this point in the history
Instead, bind the refresh() method to on-change events of the Slicing and Time Indices input boxes.
  • Loading branch information
caisq authored and chihuahua committed Mar 5, 2018
1 parent e547f78 commit e0957ba
Showing 1 changed file with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,23 @@
class="inline value-card-input"
label="Slicing"
id="slicing"
value="{{slicing}}">
value="{{slicing}}"
on-change="refresh">
</paper-input>
</div>
<div>
<paper-input
class="inline value-card-input"
label="Time Indices"
id="time-indices"
value="{{timeIndices}}">
value="{{timeIndices}}"
on-change="refresh">
</paper-input>
<paper-button raised
id='time-indices-toggle-button'
class='tensor-value-buttons'
on-click='_timeIndicesToggleButtonCallback'
>Full History</paper-button>
<paper-button raised
class="tensor-value-buttons"
on-click="refresh"
>Refresh</paper-button>
</div>
</td>
<td class="tensor-value-view-td">
Expand Down

0 comments on commit e0957ba

Please sign in to comment.