bitcore-node-zcash/public/js/controllers/header.js

15 lines
365 B
JavaScript
Raw Normal View History

2014-01-06 12:34:25 -08:00
'use strict';
angular.module('mystery.system').controller('HeaderController', ['$scope', 'Global', function ($scope, Global) {
$scope.global = Global;
$scope.menu = [{
'title': 'Articles',
'link': 'articles'
}, {
'title': 'Create New Article',
'link': 'articles/create'
}];
$scope.isCollapsed = false;
}]);