Проблема с bootstrap carousel в joomla 3
Отключаем подобную фичу в mootools не отключая mootools...
Добавляем перед </head> скриптик:
<script type="text/javascript"> window.addEvent('domready', function(){ if (typeof jQuery != 'undefined' && typeof MooTools != 'undefined' ) {
Element.implement({ slide: function(how, mode){ return this; } }); } });
</script>
This turns-off the Moo-tools Fx.Slider feature by overriding a function so that it does nothing. Benefits are that it allows the normal Bootstrap carousel function to do it's thing, doesn't need a loop and doesn't rely on calling your carousel by a particular class. Only possible downside is if you're relying on Mootools Fx.slider as it now won't do anything.
Summary: If you're using Bootstrap use method 2. If you want Mootools slider you're probably not using Bootstrap so Method 2 wouldn't trigger anyway.











