Skip to content

Instantly share code, notes, and snippets.

@kentcdodds
Created July 16, 2014 04:55
Show Gist options
  • Save kentcdodds/a5b8e8dc4569c80e9a20 to your computer and use it in GitHub Desktop.
Save kentcdodds/a5b8e8dc4569c80e9a20 to your computer and use it in GitHub Desktop.
kcd-recompile usage
<div kcd-recompile="recompileAllTheThings" use-boolean>
<div ng-repeat="thing in ::things" kcd-recompile="thing.recompileCount">
<img ng-src="{{::thing.getImage()}}">
<span>{{::thing.name}}</span>
<button ng-click="thing.recompileCount=thing.recompileCount+1">Recompile This Thing</button>
</div>
</div>
<button ng-click="recompileAllTheThings=true">Recompile All Things!</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment