Changeset 4474 for extensions/Juza/js


Ignore:
Timestamp:
Dec 12, 2009, 12:00:13 AM (14 years ago)
Author:
vdigital
Message:

[Update] For Juza - Minor changes for plg

Pendings:

  • Configuration
  • Exception management
File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Juza/js/juzascript.js

    r4461 r4474  
    66    $(this).addClass('bigImg').attr('src', $(this).attr('src').replace('thumbnail/TN-', ''));
    77  });
    8   $("ul.categoryActions li a[href*='category/'][href*='/flat']").each(function() {
    9     /* $('ul.categoryActions').css('display','inline'); */
    10     /* $('div.titrePage h2').prepend('<a class="jQuery home" href="index.php" title="Home">Albums</a>'); */
     8  $('.thumbnailCategory .description h3 a').each(function() {
     9    $cat_url = $(this).attr('href');
     10    $cat_tree = $('#menubar #mbCategories dd ul li a[href="'+$cat_url+'"]').next('.menuInfoCatByChild').next().html();
     11    if ($cat_tree == null) $cat_tree = '';
     12    $(this).parent('h3').next('.text').after('<ul>'+$cat_tree+'</ul>');
    1113  });
     14        $('.thumbnailCategories li').addClass('Juza-cat');
     15        $('.description li').removeClass('Juza-cat');
    1216  $reltag = $('#menubar #mbTags').html();
    1317        if ($reltag == null) $reltag = '';
    1418        $reltag = '<div id="relTag">' + $reltag + '</div>';
    1519        $('#copyright').before('<div id="jquery_local_img">' + $reltag + '</div>');
    16   $temp = $('#content .navigationBar').html();
     20  $reltag = $('#content .navigationBar').html();
     21        if ($reltag == null) $reltag = '';
    1722        $('#content .navigationBar').css('display','none');
    18         $('div.titrePage h2').after($temp);
     23        $('div.titrePage h2').after('<div id="Juza-Thumbs"></div>'+$reltag);
    1924  $('span.wrap2 a img').click(function() {
    2025    $scr = $(this).attr('src').replace('thumbnail/TN-', '');
    2126    $href = $(this).parent('a').attr('href');
    2227    $alt = $(this).attr('alt');
    23     $(this).parent('a').attr('href', '#content');
     28    $(this).parent('a').attr('href', '#Juza-Thumbs');
    2429    $temp = $href.substr($href.indexOf('/')+1);
    2530    $temp = $temp.substr(0,$temp.indexOf('/'));
    2631    $title = $('#ix-desc .Thumb-'+$temp).attr('title');
    27     $('#jquery_local_img').fadeOut("slow").replaceWith('<div id="jquery_local_img"><img usemap="#picturetop" title="'+$title+'" alt="'+$alt+'" src="'+$scr+'"/><map name="picturetop"><area href="#" coords="0,0,1024,300" shape="rect" title="Index"/><area href="'+$href+'" coords="0,301,1024,600" shape="rect" title="'+$title+'"/></map><br/>'+ $title +' - <a href="#content"><em>Index</em></a>' + $reltag + '</div>').fadeIn("slow");
     32    $('#jquery_local_img').fadeOut("slow").replaceWith('<div id="jquery_local_img"><img usemap="#picturetop" title="'+$title+'" alt="'+$alt+'" src="'+$scr+'"/><map name="picturetop"><area href="#" coords="0,0,1024,300" shape="rect" title="Index"/><area href="'+$href+'" coords="0,301,1024,600" shape="rect" title="'+$title+'"/></map><br/>'+ $title +' - <a href="#Juza-Thumbs"><em>Index</em></a>' + $reltag + '</div>').fadeIn("slow");
    2833  });
    2934  $('span.wrap2 a img').hover(function() { },function() {
    3035    $(this).parent('a').attr('href', $href);
    3136  });
    32 
     37        if ($reltag == '') $('#jquery_local_img').hide();
    3338});
Note: See TracChangeset for help on using the changeset viewer.