Last active
December 23, 2018 21:35
-
-
Save ethanfrogers/80527b1e5beaef3ac53cfef8b6ecd605 to your computer and use it in GitHub Desktop.
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
<h1>Hello World</h1> | |
<stage-config-field label="Method" ng-if="$ctrl.displayField('method')"> | |
<ui-select ng-model="$ctrl.stage.method" class="form-control input-sm"> | |
<ui-select-match placeholder="Select a method...">{{$select.selected}}</ui-select-match> | |
<ui-select-choices repeat="method in $ctrl.methods | filter: $select.search"> | |
<span ng-bind-html="method | highlight: $select.search"></span> | |
</ui-select-choices> | |
</ui-select> | |
</stage-config-field> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment