Close

Bug in IE7

alextretij
11 years ago
#2158 Quote
Avatar
  • 4
In NivoSlider.cshtml

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>

IvanStoyanov
11 years ago
#2159 Quote
Avatar
  • Moderator
  • 269
alextretij wrote:
In NivoSlider.cshtml

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>



Hi alextretij,

Thank you for reporting this problem.

We fixed it.

Ivan Stoyanov
Thank you for choosing our products! Your feedback is important to us!