fruitstand
Version:
22 lines • 584 B
HTML
<html ng-app="myApp">
<head>
<title>AngularJS $http Service</title>
<style>span{color:red;}</style>
</head>
<body>
<div ng-controller="myController">
<h2>$http Service</h2>
<input type="button" ng-click="resetDays()"
value="Initialize Days"/>
{{status}}
<h3>Days Available</h3>
<div ng-repeat="day in days">
{{day}}
[<span ng-click="removeDay(day)">remove</span>]
</div>
</div>
<script src="http://code.angularjs.org/1.2.9/angular.min.js"></script>
<script src="/js/service_http.js"></script>
</body>
</html>