From 4ec0d0633d0a6d8d808869b93434bf9bc33b4cd4 Mon Sep 17 00:00:00 2001 From: Ilya Bolkhovsky Date: Tue, 27 Sep 2016 16:08:25 +0300 Subject: [PATCH 1/2] fix module reference --- docs/src/tutorials/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/tutorials/index.md b/docs/src/tutorials/index.md index d8842de9d7..93ff28db0c 100644 --- a/docs/src/tutorials/index.md +++ b/docs/src/tutorials/index.md @@ -2948,7 +2948,7 @@ will implement: /*global define*/ define( - ['./src/ExampleTelemetrySeries'], + ['./ExampleTelemetrySeries'], function (ExampleTelemetrySeries) { "use strict"; From 77d4760945f168eae841fe514e36724ba9243527 Mon Sep 17 00:00:00 2001 From: Ilya Bolkhovsky Date: Wed, 28 Sep 2016 15:13:23 +0300 Subject: [PATCH 2/2] fixed new code indication --- docs/src/tutorials/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/tutorials/index.md b/docs/src/tutorials/index.md index 93ff28db0c..350d8f2c6b 100644 --- a/docs/src/tutorials/index.md +++ b/docs/src/tutorials/index.md @@ -675,10 +675,10 @@ it in our bundle definition, as an extension of category `controllers`: ```diff define([ 'legacyRegistry', - './src/controllers/TodoController' ++ './src/controllers/TodoController' ], function ( legacyRegistry, - TodoController ++ TodoController ) { legacyRegistry.register("tutorials/todo", { "name": "To-do Plugin",