diff options
author | Richard Worth <rdworth@gmail.com> | 2008-12-13 11:51:33 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-12-13 11:51:33 +0000 |
commit | 24f2b7794c6fa4e57c825a36b5b2ef6284a99471 (patch) | |
tree | 06a73267e256ab1b8b8345d4da0517e2e0b01d10 /demos/functional | |
parent | b731dc5e9798601da4a3e505512b4efe5b90b63d (diff) | |
download | jquery-ui-24f2b7794c6fa4e57c825a36b5b2ef6284a99471.tar.gz jquery-ui-24f2b7794c6fa4e57c825a36b5b2ef6284a99471.zip |
corrected some invalid html <div/> to <div></div>
Diffstat (limited to 'demos/functional')
-rw-r--r-- | demos/functional/templates/ui.tabs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/functional/templates/ui.tabs.php b/demos/functional/templates/ui.tabs.php index b6c977d7c..370e24baf 100644 --- a/demos/functional/templates/ui.tabs.php +++ b/demos/functional/templates/ui.tabs.php @@ -46,7 +46,7 @@ { desc: 'Simple Tabs', source: '$("#divTabs").tabs();' }, { desc: 'Simple Cloned Tabs', source: '$("#divTabs").clone().tabs();' }, { desc: 'Simple Empty Tabs', source: '$("#divTabs").tabs();' }, - { desc: 'Simple Detached Tabs', source: '$("<div/>").tabs();' } + { desc: 'Simple Detached Tabs', source: '$("<div></div>").tabs();' } ] }, { |