Ignore:
Timestamp:
May 21, 2014, 6:39:06 PM (10 years ago)
Author:
Miklfe
Message:

Bug corrigé: compatibilité avec contactform

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/Full_Background/js/full_BG.js

    r25999 r28523  
    168168                                                if($tf_bg_img.is(':animated'))
    169169                                                        return false;
    170                                                         scroll('tb');
     170                                                        scroll('bt');
    171171                                        });
    172172                                       
     
    175175                                                if($tf_bg_img.is(':animated'))
    176176                                                return false;
    177                                                 scroll('bt');
     177                                                scroll('tb');
    178178                                        });
    179179                                       
     
    197197                                                switch(e.which){
    198198                                                        case 38:       
     199                                                                scroll('tb');
     200                                                                break; 
     201
     202                                                        case 40:       
    199203                                                                scroll('bt');
    200                                                                 break; 
    201 
    202                                                         case 40:       
    203                                                                 scroll('tb');
    204204                                                                break;
    205205                                                }
     
    215215                                        //if dir is "tb" (top -> bottom) increment current,
    216216                                        //else if "bt" decrement it
    217                                         current = (dir == 'tb')?current + 1:current - 1;
     217                                        current = (dir == 'bt')?current + 1:current - 1;
    218218                                       
    219219                                        //we want a circular slideshow,
     
    283283                                               
    284284                                        //we want the old image to slide in the same direction, out of the viewport
    285                                                 var slideTo     = (dir == 'tb')?-$tf_bg_img.height() + 'px':$(window).height() + 'px';
     285                                                var slideTo     = (dir == 'bt')?-$tf_bg_img.height() + 'px':$(window).height() + 'px';
    286286                                                $tf_bg_img.stop().animate({
    287287                                                        top     : slideTo
Note: See TracChangeset for help on using the changeset viewer.