Last active
December 29, 2015 21:09
-
-
Save heath/7728699 to your computer and use it in GitHub Desktop.
This file contains 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
class ParentViewCtrl | |
@$inject: ['$scope', '$location'] | |
constructor: (@scope, @location) -> | |
@scope.fun_times = @fun_times | |
@scope.some_ojects = @some_objects | |
fun_times: => | |
console.log "something something" | |
some_objects: [ | |
"id" : 1 | |
"name" : "foo" | |
, | |
"id" : 2 | |
"name" : "bar" | |
, | |
"id" : 3 | |
"name" : "baz" | |
] | |
angular.module('app').controller 'ParentViewCtrl', ParentViewCtrl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment