In class.ImageSlider.php Line 87 has to be changed to new syntax from:
$(window).load(function(){...});
to
$(window).on('load', function(){ ...});
Could you fix this?
Thanks in advance.
JayTee75
--
Code: |
...
$doc->addScriptDeclaration(
sprintf('%3$s function() { var $ = window.jQueryNivoSlider || jQuery; var opts = %2$s;%4$s $("#%1$s").nivoSlider(opts); });',
$id,
$clientParams ? json_encode($clientParams) : '{}',
$loadMethod == 'load' ? "jQuery(window).on('load'," : 'jQuery(document).ready',
...
|