diff --git a/misc/demo/index.html b/misc/demo/index.html
index bd81ffb..e42c9ca 100644
--- a/misc/demo/index.html
+++ b/misc/demo/index.html
@@ -197,6 +197,7 @@
- - This setting has an angular $watch listener applied to it.
+ - B - This setting is a boolean. It doesn't need a parameter.
- C - This setting can be configured globally in a constant service*.
- $ - This setting expects an angular expression instead of a literal string. If the expression support a boolean, you can pass it directly.
- readonly - This setting is readonly.
diff --git a/src/dropdown/docs/readme.md b/src/dropdown/docs/readme.md
index 81e8e63..79b8952 100644
--- a/src/dropdown/docs/readme.md
+++ b/src/dropdown/docs/readme.md
@@ -10,10 +10,6 @@ Each of these parts need to be used as attribute directives.
### uib-dropdown settings
-* `append-to`
- _(Default: `null`)_ -
- Appends the inner dropdown-menu to an arbitrary DOM element.
-
* `auto-close`
_(Default: `always`)_ -
Controls the behavior of the menu when clicked.
@@ -21,15 +17,24 @@ Each of these parts need to be used as attribute directives.
* `disabled` - Disables the auto close. You can control it manually with `is-open`. It still gets closed if the toggle is clicked, `esc` is pressed or another dropdown is open. It also won't be closed on `$locationchangeSuccess`.
* `outsideClick` - Closes the dropdown automatically only when the user clicks any element outside the dropdown.
-* `append-to-body`
+* `dropdown-append-to`
+ $
+ _(Default: `null`)_ -
+ Appends the inner dropdown-menu to an arbitrary DOM element.
+
+* `dropdown-append-to-body`
+ B
_(Default: `false`)_ -
Appends the inner dropdown-menu to the body element.
* `is-open`
+ $
+
_(Default: `false`)_ -
Defines whether or not the dropdown-menu is open. The `uib-dropdown-toggle` will toggle this attribute on click.
* `keyboard-nav`:
+ B
_(Default: `false`)_ -
Enables navigation of dropdown list elements with the arrow keys.