5 lines
97 B
JavaScript
Raw Normal View History

app.controller('NavCtrl', ['$scope', '$name', function(scope, name) {
scope.name = name;
}]);