From: Ivan Kurnosov Date: Sun, 11 Mar 2012 21:24:18 +0000 (+1300) Subject: Grammar fix in js/README.md X-Git-Tag: v2.0.2~33^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2519%2Fhead;p=thirdparty%2Fbootstrap.git Grammar fix in js/README.md --- diff --git a/js/README.md b/js/README.md index 3aa09c960f..1c3ced31f8 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 ---