1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-20 13:59:40 +02:00
portainer/app/components/masthead/mastheadController.js

5 lines
163 B
JavaScript
Raw Normal View History

2014-11-12 10:45:13 -06:00
angular.module('masthead', [])
2014-11-12 11:04:04 -06:00
.controller('MastheadController', ['$scope', function($scope) {
2014-11-12 10:45:13 -06:00
$scope.template = 'app/components/masthead/masthead.html';
2014-11-12 11:04:04 -06:00
}]);