The code in modules>mod_rokslide>tmpl>default.php
needs to have 2 commas removed:
<script type="text/javascript">
window.addEvent('domready', function() {
var myFilm = new RokSlide($('rokslide'), {
fx: {
wait: true,
duration: 1000, <-- remove this comma
},
scrollFX: {
transition: Fx.Transitions.Cubic.easeIn
},
dimensions: {
width: <?php echo $params->get( 'width', 722 ); ?>,
height: <?php echo $params->get( 'height', 150 ); ?>, <-- remove this comma
}
});
});
</script>
With these two commas removed the rokslide works properly.