Ignore:
Timestamp:
Jun 26, 2012, 10:33:51 AM (12 years ago)
Author:
plg
Message:

first step to make Luciano compatible with Piwigo 2.4

Location:
extensions/luciano/template
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/luciano/template/picture.tpl

    r12534 r16048  
    2222  </ul>
    2323</div>
     24
     25{footer_script require='jquery'}{literal}
     26jQuery("#linkPrev img, #linkNext img").css("opacity", 0);
     27
     28jQuery("#linkPrev").mouseenter(function() {
     29  jQuery("#linkPrev img").css("opacity", 1);
     30});
     31jQuery("#linkPrev").mouseleave(function() {
     32  jQuery("#linkPrev img").css("opacity", 0);
     33});
     34
     35jQuery("#linkNext").mouseenter(function() {
     36  jQuery("#linkNext img").css("opacity", 1);
     37});
     38jQuery("#linkNext").mouseleave(function() {
     39  jQuery("#linkNext img").css("opacity", 0);
     40});
     41{/literal}{/footer_script}
    2442
    2543<div id="theImage">
     
    84102{rdelim});
    85103{/footer_script}
    86 
    87104      </div>
    88105    </form>
Note: See TracChangeset for help on using the changeset viewer.