Created
December 31, 2016 22:08
-
-
Save scionwest/9710209d03d19a08a2440aa40ed8e6b3 to your computer and use it in GitHub Desktop.
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>Account</h1> | |
| <div ng-repeat="accountType in accountTypes"> | |
| <div>{{acountType}} type</div> | |
| <div> | |
| {{accountTypes}} | |
| </div> | |
| </div> | |
| </div> |
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
| (function () { | |
| angular.module('app') | |
| .controller('AccountSetupController', AccountSetupController); | |
| function AccountSetupController($scope, accountService) { | |
| $scope.accountTypes = ['Subscriber', 'Provider']; | |
| } | |
| })(); |
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
| Account | |
| type | |
| ["Subscriber","Provider"] | |
| type | |
| ["Subscriber","Provider"] |
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 class="ng-scope"> | |
| <h1>Account</h1> | |
| <!-- ngRepeat: accountType in accountTypes --><div ng-repeat="accountType in accountTypes" class="ng-scope"> | |
| <div class="ng-binding"> type</div> | |
| <div class="ng-binding"> | |
| ["Subscriber","Provider"] | |
| </div> | |
| </div><!-- end ngRepeat: accountType in accountTypes --><div ng-repeat="accountType in accountTypes" class="ng-scope"> | |
| <div class="ng-binding"> type</div> | |
| <div class="ng-binding"> | |
| ["Subscriber","Provider"] | |
| </div> | |
| </div><!-- end ngRepeat: accountType in accountTypes --> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment