blob: 313236e6c60b5c4af8400879461dfb269f576538 [file] [log] [blame]
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -07001// js for sample app view
2(function () {
3 'use strict';
4
5 angular.module('ovSample', [])
6 .controller('OvSampleCtrl',
7 ['$log', '$scope',
8
9 function ($log, $scope) {
10 var self = this;
11
12 self.msg = 'A message from our app...';
13
14 $log.log('OvSampleCtrl has been created');
15 }]);
16}());