- 4
In NivoSlider.cshtml
You must delete comma after randomStart: false.
Your code
in IE7 is not working
Change code such
You must delete comma after randomStart: false.
Your code
pauseOnHover: @Model.Settings.PauseOnHover.ToString().ToLower(), // Stop animation while hovering
manualAdvance: false, // Force manual transitions
prevText: '@Model.Settings.PrevText', // Prev directionNav text
nextText: '@Model.Settings.NextText', // Next directionNav text
randomStart: false, // Start on a random slide
});
});
</script>
in IE7 is not working
Change code such
pauseOnHover: @Model.Settings.PauseOnHover.ToString().ToLower(), // Stop animation while hovering
manualAdvance: false, // Force manual transitions
prevText: '@Model.Settings.PrevText', // Prev directionNav text
nextText: '@Model.Settings.NextText', // Next directionNav text
randomStart: false // Start on a random slide Del Comma
});
});
</script>