mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
angular.module('app').directive('shipyardMenu', function () {
|
|
|
|
return {
|
|
restrict: 'E',
|
|
templateUrl: 'views/menu.html',
|
|
link: function () {
|
|
|
|
// TODO: Saved Ships: load, save, save as, delete, export
|
|
// TODO: Links: github, forum, etc
|
|
|
|
}
|
|
};
|
|
}); |