Skip to content

Instantly share code, notes, and snippets.

@levibotelho
Created March 7, 2015 07:30
Show Gist options
  • Save levibotelho/c1d1219bc559d781d204 to your computer and use it in GitHub Desktop.
Save levibotelho/c1d1219bc559d781d204 to your computer and use it in GitHub Desktop.
A scratchpad for testing Angular scripts
<html ng-app="root">
<body>
<div ng-controller="controller"></div>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.12/angular.min.js"></script>
<script>
angular.module("root", [])
.controller("controller", ["$scope", function ($scope) {
}]);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment