My goal is to show each word on a new line, similar to how words are displayed in a hangman game. The words should be displayed as blanks.
<body ng-init="models = [['H','a','p','p','y'],['X','m','a','s']]">
<div ng-repeat="m in models">
<div ng-repeat="movie in m track by $index">
<span class="control-label1">{{movie}}</span>
</div>
</div>
</body>
However, I want the output to be displayed vertically like this:
H a p p y
X m a s
(with space in between)
http://jsfiddle.net/hr1383/uveyfLz1/
How can I achieve this layout?
Thank you