aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-03-11 17:38:23 -0700
committerMark Otto <[email protected]>2012-03-11 17:38:23 -0700
commit95cb6f07a8fc2410873c59addd3f1aad948e54fd (patch)
tree3301949733a3d6500c80a039a1094ae2a53cc51e /js
parent8fd126ba1ba8c76f9b11833380db91554a034794 (diff)
parent354252b4b506221f14d3f95627b0c887eb160caa (diff)
downloadbootstrap-95cb6f07a8fc2410873c59addd3f1aad948e54fd.tar.xz
bootstrap-95cb6f07a8fc2410873c59addd3f1aad948e54fd.zip
Merge branch 'zerkms-master' into 2.0.2-wip
Conflicts: Makefile
Diffstat (limited to 'js')
-rw-r--r--js/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/README.md b/js/README.md
index 3aa09c960..1c3ced31f 100644
--- a/js/README.md
+++ b/js/README.md
@@ -28,7 +28,7 @@ All public APIs should be single, chainable methods, and return the collection a
All methods should accept an optional options object, a string which targets a particular method, or null which initiates the default behavior:
$("#myModal").modal() // initialized with defaults
- $("#myModal").modal({ keyboard: false }) // initialized with now keyboard
+ $("#myModal").modal({ keyboard: false }) // initialized with no keyboard
$("#myModal").modal('show') // initializes and invokes show immediately afterqwe2
---