diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-12-30 18:17:08 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-12-30 18:17:08 +0000 |
commit | a5cebfaa6a373b3024a4c54ed6634343cb23d8bc (patch) | |
tree | ad4d2778be9515ac258ba7b126682d7a61e94f06 /demos | |
parent | 052f36e29edd3f9010873545c7176e8c0a69eaab (diff) | |
download | jquery-ui-a5cebfaa6a373b3024a4c54ed6634343cb23d8bc.tar.gz jquery-ui-a5cebfaa6a373b3024a4c54ed6634343cb23d8bc.zip |
Accordion demos: Removed trailing commas.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/accordion/custom_icons.html | 5 | ||||
-rw-r--r-- | demos/accordion/default.html | 2 | ||||
-rw-r--r-- | demos/accordion/fillspace.html | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/demos/accordion/custom_icons.html b/demos/accordion/custom_icons.html index 68fbacba7..d9c566452 100644 --- a/demos/accordion/custom_icons.html +++ b/demos/accordion/custom_icons.html @@ -12,8 +12,9 @@ $("#accordion").accordion({ header: "h3", icons: { - header: "ui-icon-circle-arrow-e", - headerSelected: "ui-icon-circle-arrow-s"} + header: "ui-icon-circle-arrow-e", + headerSelected: "ui-icon-circle-arrow-s" + } }); }); </script> diff --git a/demos/accordion/default.html b/demos/accordion/default.html index 0e10fec6e..478a25844 100644 --- a/demos/accordion/default.html +++ b/demos/accordion/default.html @@ -10,7 +10,7 @@ <script type="text/javascript"> $(function() { $("#accordion").accordion({ - header: "h3", + header: "h3" }); }); </script> diff --git a/demos/accordion/fillspace.html b/demos/accordion/fillspace.html index 675161310..bb33ee857 100644 --- a/demos/accordion/fillspace.html +++ b/demos/accordion/fillspace.html @@ -12,7 +12,7 @@ $(function() { $("#accordion").accordion({ header: "h3", - fillSpace: true, + fillSpace: true }); }); $(function() { |