mirror of
https://github.com/nasa/openmct.git
synced 2025-01-03 03:46:42 +00:00
20 lines
451 B
JavaScript
20 lines
451 B
JavaScript
define([
|
|
'legacyRegistry',
|
|
'./src/controllers/TodoController'
|
|
], function (
|
|
legacyRegistry,
|
|
TodoController
|
|
) {
|
|
legacyRegistry.register("tutorials/todo", {
|
|
"name": "To-do Plugin",
|
|
"description": "Allows creating and editing to-do lists.",
|
|
"extensions": {
|
|
"stylesheets": [
|
|
{
|
|
"stylesheetUrl": "css/todo.css"
|
|
}
|
|
]
|
|
}
|
|
});
|
|
});
|