My console is returning this error:
Uncaught SyntaxError: Unexpected end of input
I know what it means, but i can't find where i did not close correctly my bracket.
This is the URL of my website, http://bit.ly/KJz5pi
If anybody can solve it, i will be so much glad! Thanks.
--------- EDIT
I cut a big part of my code, and it's showing this error just in this small slice of code:
$("#slider-index").bxSlider({
delay: 3000,
speed: 5000,
pause: 1000,
controls: false,
auto: true,
pager: false,
adaptativeHeight: true,
adaptativeWidth: true,
mode: 'fade'
});
function persiana() {
$('.one').animate({
left: '-35px'
}, 1500, 'linear', function() {
$(this).css('left', '0');
persiana();
});
}
persiana();
and yet, I don't see the error, not even jshint.com finds it!