summaryrefslogtreecommitdiff
path: root/client/js/controllers/image
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-06 14:51:50 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2016-03-06 14:51:50 +0100
commit96094547dd793868092dda4c2699a839287fa175 (patch)
treeadd78f10143bba3cdfece27949796447f677f90d /client/js/controllers/image
parent9b36459eb868dd35d078924293a49ed89b49b3e9 (diff)
Add image view, controller.
Diffstat (limited to 'client/js/controllers/image')
-rw-r--r--client/js/controllers/image/image.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/client/js/controllers/image/image.js b/client/js/controllers/image/image.js
new file mode 100644
index 0000000..036dec3
--- /dev/null
+++ b/client/js/controllers/image/image.js
@@ -0,0 +1,9 @@
+/**
+ * The image controller
+ *
+ * @param {$scope} $scope The $scope service from angular
+ */
+mainApp.controller('imageCtrl', function ($scope)
+{
+ $scope.title="Test";
+});