diff options
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>
|