From ef220ab9e1d5f7d1694d3ce2345dd02ace37f411 Mon Sep 17 00:00:00 2001 From: adrian Date: Wed, 10 Feb 2016 16:42:29 +0100 Subject: [PATCH] Fixed small code errors in How-To Guide --- developer-guides/todo-extension.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/developer-guides/todo-extension.md b/developer-guides/todo-extension.md index ff3ebe3..ab6fd09 100644 --- a/developer-guides/todo-extension.md +++ b/developer-guides/todo-extension.md @@ -254,7 +254,7 @@ From the controller, we can access this configuration as a property of the modul `src/Controller/TodoController.php`: ``` -use Pagekit\Application +use Pagekit\Application as App; // ... @@ -328,7 +328,7 @@ $(function(){ el: '#todo', data: { - entries: window.$data.config.entries, + entries: window.$data.entries, }, methods: { @@ -393,7 +393,7 @@ This is how a simple view might look like.
  • {{ entry.message }} - +