diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2016-05-28 12:28:19 +0200 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2016-05-28 12:28:19 +0200 |
commit | 95a5e12dca0e0e0eb93b3dad69e529d737840d38 (patch) | |
tree | 618f800406d41e6f23e5722671ed51ac0144bd8e /afb-client/app/Frontend/pages/SamplePost/SamplePost.js | |
parent | 6d06a2a9a02906ce4c848540d74c3c5798688664 (diff) |
Clean up and documentation
Diffstat (limited to 'afb-client/app/Frontend/pages/SamplePost/SamplePost.js')
-rw-r--r-- | afb-client/app/Frontend/pages/SamplePost/SamplePost.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/afb-client/app/Frontend/pages/SamplePost/SamplePost.js b/afb-client/app/Frontend/pages/SamplePost/SamplePost.js new file mode 100644 index 0000000..e0c06de --- /dev/null +++ b/afb-client/app/Frontend/pages/SamplePost/SamplePost.js @@ -0,0 +1,18 @@ +(function() { +'use strict'; + +// list all rependencies within the page + controler if needed +angular.module('SamplePostModule', ['SubmitButton','UploadFiles']) + + .controller('SamplePostController', function ($http) { + var scope = this; // I hate JavaScript + + console.log ("sample Init"); + + scope.FileUploaded = function (response) { + console.log ("FileUploaded response=%s", JSON.stringify(response)); + }; + }); + +console.log ("PostSampleController Loaded"); +})();
\ No newline at end of file |