Angular: Empty Fiddle

http://angularjs.org/

by briceburg

HTML

<script src="https://raw.github.com/briceburg/angular.js/master/builds/angular.js"></script>
<script id="partials/addressform.html" type="text/ng-template">
    partial of type {{type}}<br>
</script>

<div ng-controller="MyCtrl">
  <ng-include src="'partials/addressform.html'" onInclude="type='billing'"></ng-include>
  <ng-include src="'partials/addressform.html'" onLoad="type='delivery'"></ng-include>
</div>

JavaScript

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
}