Skip to content

Instantly share code, notes, and snippets.

Created August 6, 2015 11:56
Show Gist options
  • Save anonymous/6311f0ddcdefbcad353e to your computer and use it in GitHub Desktop.
Save anonymous/6311f0ddcdefbcad353e to your computer and use it in GitHub Desktop.
allocation.controller('Ctrl', ['$scope', Ctrl]);
// OR
allocation.controller('Ctrl', Ctrl);
Ctrl.$inject = ['$scope'];
// THEN
function Ctrl($scope) {
$scope.data = [
{
name: 'row1',
tasks: [
{name: 'task1', from: new Date(2013, 9, 25, 15, 0, 0), to: new Date(2013, 9, 25, 18, 30, 0)}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment