Created
November 10, 2014 17:01
-
-
Save tristanpendergrass/68703bf4065ca2d9560e 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 class="controls" ng-if="floorPlanDataChunkCount > 1"> | |
<div class="checkbox-group"> | |
<label for="show-cumulative">Totals</label> | |
<input id="show-cumulative" type="checkbox" ng-model="showTotal" /> | |
</div> | |
<div ng-hide="showTotal" class="heat-map-controls"> | |
<img src="static/images/videoPlayIcon.png" class="play-animation-icon" ng-click="startAnimation()" ng-if="!isAnimating" /> | |
<div class="play-animation-icon" ng-if="isAnimating"></div> | |
<div jquery-slider callback="setInstanceData" chunk-count="floorPlanDataChunkCount"></div> | |
</div> | |
showTotal inside (this works): {{showTotal}} | |
</div> | |
showTotal outside (does not work): {{showTotal}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment