Basically, the reverse of abs. If I have:
if($this.find('.pdxslide-activeSlide').index() < slideNum-1){ slideNum = -slideNum }
console.log(slideNum)
No matter what console ALWAYS returns a positive number. How do I fix this?
If I do:
if($this.find('.pdxslide-activeSlide').index() < slideNum-1){
_selector.animate({left:(-slideNum*sizes.images.width)+'px'},750,'InOutPDX')
}
else{
_selector.animate({left:(slideNum*sizes.images.width)+'px'},750,'InOutPDX')
}
it works tho, but it's not "DRY" and just stupid to have entire block of code JUST for for a -