Skip to content

Instantly share code, notes, and snippets.

@tristanpendergrass
Created November 10, 2014 17:01
Show Gist options
  • Save tristanpendergrass/68703bf4065ca2d9560e to your computer and use it in GitHub Desktop.
Save tristanpendergrass/68703bf4065ca2d9560e to your computer and use it in GitHub Desktop.
<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