|
@@ -306,9 +306,6 @@ var Reveal = (function(){
|
|
|
|
|
|
setupDOM();
|
|
|
|
|
|
-
|
|
|
- addEventListeners();
|
|
|
-
|
|
|
|
|
|
configure();
|
|
|
|
|
@@ -394,6 +391,20 @@ var Reveal = (function(){
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ postConfigure();
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ * Updates various parts of the presentatio after the
|
|
|
+ * configuration has changed.
|
|
|
+ */
|
|
|
+ function postConfigure() {
|
|
|
+
|
|
|
+
|
|
|
+ removeEventListeners();
|
|
|
+ addEventListeners();
|
|
|
+
|
|
|
|
|
|
layout();
|
|
|
|