]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Fix typo in JavaScript docs code example
authorGeoff Kimball <geoff@zurb.com>
Mon, 30 Nov 2015 18:15:46 +0000 (10:15 -0800)
committerGeoff Kimball <geoff@zurb.com>
Mon, 30 Nov 2015 18:15:46 +0000 (10:15 -0800)
docs/pages/javascript.md

index 7cc6dbb261817bf4f861c86e71073b9f2805c488..b305f48ff085dc6d24a452e17813dc6bf19299bc 100644 (file)
@@ -78,7 +78,7 @@ An individual instance of a plugin can also have different settings. These can b
 In the HTML, each setting can be defined as an individual data attribute. Note that camelCased options are converted to hyphenated words. In the below example, `multiExpand` becomes `data-multi-expand`.
 
 ```html
-<div data-accordion data-slidespeed="500" data-multi-expand="true"></div>
+<div data-accordion data-slide-speed="500" data-multi-expand="true"></div>
 ```
 
 ---