Angular: Empty Fiddle

http://angularjs.org/

by pkozlowski_opensource

HTML

<script src="http://code.angularjs.org/angular-1.0.1.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'" onLoad="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) {
}