openmct/tutorials/todo/bundle.js

20 lines
451 B
JavaScript
Raw Normal View History

2016-05-26 22:36:09 +00:00
define([
'legacyRegistry',
'./src/controllers/TodoController'
], function (
legacyRegistry,
TodoController
2016-05-27 23:46:06 +00:00
) {
2016-05-26 22:36:09 +00:00
legacyRegistry.register("tutorials/todo", {
"name": "To-do Plugin",
"description": "Allows creating and editing to-do lists.",
"extensions": {
2016-05-27 23:46:06 +00:00
"stylesheets": [
2016-05-26 22:36:09 +00:00
{
2016-05-27 23:46:06 +00:00
"stylesheetUrl": "css/todo.css"
2016-05-26 22:36:09 +00:00
}
2016-05-27 23:46:06 +00:00
]
}
});
2016-05-26 22:36:09 +00:00
});