Advertisement
snowy2448

Untitled

Aug 24th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         if(self.direction_current === 1){
  2.            if(self.current_slide >= self.last_slide){
  3.                self.current_slide = 0;
  4.            } else {
  5.                self.current_slide++;
  6.            }
  7.         }
  8.  
  9.         if((self.direction_current === 1) && (self.current_slide >= self.last_slide)){
  10.             self.current_slide = 0;
  11.             return;
  12.         } else {
  13.             self.current_slide++;
  14.             return;
  15.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement