r1316 - trunk/demos
r1316 - trunk/demos
Author: pazu2k@gmail.com
Date: Tue Dec 30 03:19:49 2008
New Revision: 1316
Modified:
trunk/demos/index.html
Log:
demos/index.html - fixed syntax error and right navigation picking up full
url in IE6.
Modified: trunk/demos/index.html
==============================================================================
--- trunk/demos/index.html (original)
+++ trunk/demos/index.html Tue Dec 30 03:19:49 2008
@@ -18,8 +18,8 @@
<script type="text/javascript" src="../ui/ui.sortable.js"></script>
<script type="text/javascript" src="../ui/ui.tabs.js"></script>
<script type="text/javascript">
- jQuery(function($){
- $('.left-nav a').click(function(ev){
+ jQuery(function($) {
+ $('.left-nav a').click(function(ev) {
var section = this.href.replace('/index.html','');
var header = section.replace(/.+\/([^\/]+)/,'$1');
$('td.normal div.normal')
@@ -32,7 +32,7 @@
.find('#demo-config-menu')
.load(this.href + ' .demos-nav', function() {
$('#demo-config-menu a').each(function() {
- this.setAttribute('href', section + '/' +
this.getAttribute('href'));
+ this.setAttribute('href', section + '/' +
this.getAttribute('href').replace(/.+\/([^\/]+)/,'$1'));
$(this).attr('target', 'demo-frame');
$(this).click(function() {
$(this).parents('ul').find('li').removeClass('demo-config-on');