Skip to content
This repository has been archived by the owner on May 1, 2023. It is now read-only.

Commit

Permalink
fix(order dlg): fix instruments and limit selects
Browse files Browse the repository at this point in the history
  • Loading branch information
albertosantini committed Nov 8, 2015
1 parent 3e35fca commit 71a1d35
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/client/app/charts/order-dialog.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
<md-radio-button value="sell">Sell</md-radio-button>
</md-radio-group>

<md-input-container layout-align="space-between center">
<md-input-container layout layout-align="center center">
<md-select ng-model="vm.selectedInstrument" placeholder="Market"
ng-change="vm.changeMarket(vm.selectedInstrument)"
layout layout-align="center center">
ng-change="vm.changeMarket(vm.selectedInstrument)">
<md-option ng-value="instrument" ng-repeat="instrument in vm.instruments">
{{ instrument }}
</md-option>
Expand All @@ -37,7 +36,7 @@
step="{{ vm.step }}" aria-label="lower" aria-controls="quote-slider">
</div>

<md-input-container layout-align="space-between center">
<md-input-container layout layout-align="center center">
<md-select ng-show="vm.type == 'limit'"
ng-model="vm.selectedExpire" placeholder="Expires">
<md-option ng-value="expire.value" ng-repeat="expire in vm.expires">
Expand Down

0 comments on commit 71a1d35

Please sign in to comment.