Jump to content
  • 0

Mootools не корректная работа в Firefox


webzubra
 Share

Question

Есть сайт kkp.kz. На странице kkp.kz/rus/qas/index реализован эффект accordion для вопросов. Когда щелкаете на вопрос, под ним появляется ответ . Но в Mozilla Firefox 3.6.13 происходит событие scrollTo на первый слайд.

Ошибка возникает в коде

$$('h3.toggler').addEvent('click', function(e){
var parent = this.getParent(); // parent div
var child = parent.getChildren('div.element'); // current element to show
/** * Hide all elements */
hide_elements();
/** * Show current element */
child.setStyles({display:'block'});
});

на строке child.setStyles({display:'block'});

Если вместо {display:'block'} я ставлю любой другой стиль, то все отрабатывает нормально.

Такой же ScrollTo для блока id='container' проиcходит и в момент клика мыши на любой части бразуера (скролл, кнопка свернуть, значок firebug).

К странице подключаются также библиотека jquery и скрипты, которые ее используют. Я их отключала, но ошибка оставалась.

На данный момент не могу поймать ошибку.

Firebug останавливается вот на этом куске в mootools-core

var nativeEvent = Element.NativeEvents[realType]; 
if (nativeEvent){
if (nativeEvent == 2){
defn = function(event){
event = new Event(event, self.getWindow());
if (condition.call(self, event) === false) event.stop();
};
}
this.addListener(realType, defn);
}

Использую следующие ресурсы:

Mootools-core 1.2, Mootools-more 1.2

или

Mootools-core 1.2.5, Mootools-more 1.2.5.1

или

Mootools-core 1.3, Mootools-more 1.3

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy