From 2a9e9b859c40a3d6b4fcbb8b36670b4bc74427a4 Mon Sep 17 00:00:00 2001 From: Bartek Szopka Date: Tue, 20 Mar 2012 21:56:01 +0000 Subject: [PATCH] missing note about `init()` function --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 23eed6c..195f99e 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,10 @@ VERSION HISTORY #### UPGRADING FROM PREVIOUS VERSIONS +In current version calling `impress()` doesn't automatically initialize the presentation. You need to call `init()` +function from the API. So in a place were you called `impress()` to initialize impress.js simply change this call +to `impress().init()`. + Version 0.4 changed `goto` API method into `stepTo`. It turned out that `goto` is not a reserved word anymore, so it can be used in JavaScript. That's why version 0.5 brings it back and removes `stepTo`.