openmct/tutorials/todo/bundle.js

20 lines
451 B
JavaScript
Raw Normal View History

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