| console.log('hi') | |
| var myApp = angular.module('myApp', []) | |
| console.log('myApp', myApp) | |
| myApp.controller('AppCtrl', ['$scope', '$http', function($scope, $http){ | |
| console.log('hello from cotroller') | |
| }]) | |
| console.log('end') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment