removed ngClasses and used ngRemove in the appropriate places

test-unit-sauce
Brian Ford 12 years ago
parent 64abdd2f76
commit 07215bfe93

@ -1,6 +1,6 @@
<div ng-controller="ModelCtrl"> <div ng-controller="ModelCtrl">
<h2>Model Tree</h2> <h2>Model Tree</h2>
<div ng-class="{hidden: roots.length <= 1}"> <div ng-hide="roots.length <= 1">
<label for="select-root">Root <select id="select-root" ng-options="p.value as p.label for p in roots" ng-model="selectedRoot"></select></label> <label for="select-root">Root <select id="select-root" ng-options="p.value as p.label for p in roots" ng-model="selectedRoot"></select></label>
</div> </div>
<pre> <pre>

@ -10,14 +10,14 @@
</label> </label>
</form> </form>
<div ng-class="{hidden: !enable}" class="row-fluid"> <div ng-hide="!enable" class="row-fluid">
<div class="span6"> <div class="span6">
<h3>Watch Tree</h3> <h3>Watch Tree</h3>
<div class="well well-top" style="height: 400px; overflow-y: auto;"> <div class="well well-top" style="height: 400px; overflow-y: auto;">
<bat-watcher-tree val="trees[selectedRoot]" inspect="inspect"></bat-watcher-tree> <bat-watcher-tree val="trees[selectedRoot]" inspect="inspect"></bat-watcher-tree>
</div> </div>
<div class="well well-bottom"> <div class="well well-bottom">
<label for="select-root" ng-class="{hidden: roots.length <= 1}">Root <label for="select-root" ng-hide="roots.length <= 1">Root
<select id="select-root" ng-options="p.value as p.label for p in roots" ng-model="selectedRoot"></select> <select id="select-root" ng-options="p.value as p.label for p in roots" ng-model="selectedRoot"></select>
</label> </label>
</div> </div>