aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartek Szopka <bartek.szopka+github@gmail.com>2012-03-20 21:56:01 +0000
committerBartek Szopka <bartek.szopka+github@gmail.com>2012-03-20 21:56:01 +0000
commit2a9e9b859c40a3d6b4fcbb8b36670b4bc74427a4 (patch)
treeeddd2ea03f7f67ee74e6d8ef0ceb66e40193e004
parent88662339a96563cba0b7e10884f8e42bb92081c5 (diff)
downloadimpress.js-2a9e9b859c40a3d6b4fcbb8b36670b4bc74427a4.tar.gz
missing note about `init()` function
-rw-r--r--README.md4
1 files changed, 4 insertions, 0 deletions
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`.