mirror of
https://github.com/nasa/openmct.git
synced 2025-06-13 20:58:15 +00:00
Merge pull request #1207 from Proekspert/fix-tutorial
[Documentation] Fixed module reference
This commit is contained in:
@ -675,10 +675,10 @@ it in our bundle definition, as an extension of category `controllers`:
|
|||||||
```diff
|
```diff
|
||||||
define([
|
define([
|
||||||
'legacyRegistry',
|
'legacyRegistry',
|
||||||
'./src/controllers/TodoController'
|
+ './src/controllers/TodoController'
|
||||||
], function (
|
], function (
|
||||||
legacyRegistry,
|
legacyRegistry,
|
||||||
TodoController
|
+ TodoController
|
||||||
) {
|
) {
|
||||||
legacyRegistry.register("tutorials/todo", {
|
legacyRegistry.register("tutorials/todo", {
|
||||||
"name": "To-do Plugin",
|
"name": "To-do Plugin",
|
||||||
@ -2948,7 +2948,7 @@ will implement:
|
|||||||
/*global define*/
|
/*global define*/
|
||||||
|
|
||||||
define(
|
define(
|
||||||
['./src/ExampleTelemetrySeries'],
|
['./ExampleTelemetrySeries'],
|
||||||
function (ExampleTelemetrySeries) {
|
function (ExampleTelemetrySeries) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user