I'm not sure why but the main solution didn't work for me either. Weird.
To fix my problem I did the following code.
$('.carousel').carousel({interval: false});
$(document).on('mouseleave', '.carousel', function() {
$(this).carousel('pause');
});
See the documentation for carouselpause.