mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-10 07:05:35 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
angular.module('app').directive('shipyardMenu', ['$rootScope', 'lodash', function ($rootScope, _) {
|
|
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'views/menu.html',
|
|
link: function (scope, element, attributes) {
|
|
|
|
// TODO: Saved Ships: load, save, save as, delete, export
|
|
// TODO: Links: github, forum, etc
|
|
|
|
}
|
|
};
|
|
}]); |