4 // list all rependencies within the page + controler if needed
5 angular.module('SampleModule', ['SubmitButton','UploadFiles'])
7 .controller('SampleController', function ($http) {
8 var scope = this; // I hate JavaScript
10 console.log ("sample Init");
12 scope.FileUploaded = function (response) {
13 console.log ("FileUploaded response=%s", JSON.stringify(response));
17 console.log ("SampleControler Loaded");