From dda421a8f9e26621b4eb51d01fd9302dfe8466c6 Mon Sep 17 00:00:00 2001
From: Jelle Kralt <jelle@jellekralt.nl>
Date: Mon, 4 May 2015 13:37:47 +0200
Subject: [PATCH] Update README.md

---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index 115f70e..5d3502f 100644
--- a/README.md
+++ b/README.md
@@ -135,6 +135,15 @@ animation: 'fade', // The panels will fade in and out
 animation: 'slide', // The panels will slide up and down
 ```
 
+You can enable / disable the queueing of the animation by setting the ```animationQueue``` option.
+
+```javascript
+animationQueue: false, // (default) disables the queueing of the animations. With this option on, all animations happen at the same time
+animationQueue: true, // enables the queueing of the animations. With this option on, animations wait for each other
+animationQueue: 'tabs', // enables the queueing of the animations for the tabs state only
+animationQueue: 'accordion', // enables the queueing of the animations for the accordion state only
+```
+
 Callbacks
 ---------