diff options
author | Scott González <scott.gonzalez@gmail.com> | 2008-12-29 02:10:15 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2008-12-29 02:10:15 +0000 |
commit | 8d97c6a6991acf92cc5ecfe61ead6d5b5ee609d0 (patch) | |
tree | 5024f45295b072d8b4fa89ea4b77d53d2b76affa /demos/accordion | |
parent | 7a5708733293cbb0d65971bd3be888aa4604e96d (diff) | |
download | jquery-ui-8d97c6a6991acf92cc5ecfe61ead6d5b5ee609d0.tar.gz jquery-ui-8d97c6a6991acf92cc5ecfe61ead6d5b5ee609d0.zip |
Demos: Added missing semicolon.
Diffstat (limited to 'demos/accordion')
-rw-r--r-- | demos/accordion/default.html | 2 | ||||
-rw-r--r-- | demos/accordion/fillspace.html | 2 | ||||
-rw-r--r-- | demos/accordion/mouseover.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/demos/accordion/default.html b/demos/accordion/default.html index 2c1306d7f..4165b2849 100644 --- a/demos/accordion/default.html +++ b/demos/accordion/default.html @@ -12,7 +12,7 @@ $("#accordion").accordion({
header: "h3"
});
- })
+ });
</script>
</head>
<body>
diff --git a/demos/accordion/fillspace.html b/demos/accordion/fillspace.html index a96e6392b..4836de956 100644 --- a/demos/accordion/fillspace.html +++ b/demos/accordion/fillspace.html @@ -14,7 +14,7 @@ header: "h3", fillSpace: true }); - }) + }); </script> </head> <body> diff --git a/demos/accordion/mouseover.html b/demos/accordion/mouseover.html index a36a49e42..6ebcf0eb9 100644 --- a/demos/accordion/mouseover.html +++ b/demos/accordion/mouseover.html @@ -13,7 +13,7 @@ event: "mouseover",
header: "h3"
});
- })
+ });
</script>
</head>
<body>
|