Created
July 7, 2016 15:44
-
-
Save franklinjavier/69ae8ca4732034b37a5a5301ddfd8a3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular | |
.module('store') | |
.controller('StoreController', StoreController); | |
/*@ngInject*/ | |
function StoreController() { | |
var vm = this; | |
vm.foo = 'bar'; | |
return vm; | |
} | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment