This content has been marked as final.
Show 4 replies
-
1. Re: Spry Accordion
Arnout Kazemier Jan 22, 2009 12:19 PM (in response to Chepe Nicoli)They changed the Spry source file,
replace the Spry.Widget.Accordion.prototype.attachPanelHandlers function in the JS file with this and you will have the same behavior.
Spry.Widget.Accordion.prototype.attachPanelHandlers = function(panel)
{
if (!panel)
return;
var tab = this.getPanelTab(panel);
if (tab)
{
var self = this;
Spry.Widget.Accordion.addEventListener(tab, "mouseover", function(e) { return self.onPanelTabClick(e, panel); }, false);
Spry.Widget.Accordion.addEventListener(tab, "mouseover", function(e) { return self.onPanelTabMouseOver(e, panel); }, false);
Spry.Widget.Accordion.addEventListener(tab, "mouseout", function(e) { return self.onPanelTabMouseOut(e, panel); }, false);
}
}; -
2. Re: Spry Accordion
photographer stefan Jan 22, 2009 12:21 PM (in response to Chepe Nicoli)Yes sir I happens to know. You mean the accordion that is in the lower left in theirs startpage? You have to edit the javascript file in your spryfolder (SpryAccordion.js) on the website you are building. I dont remember exactly what to change but i can put the little file so you can download it if u want.
Br// Stefan -
3. Re: Spry Accordion
photographer stefan Jan 22, 2009 12:22 PM (in response to Chepe Nicoli)Forget mine you have it from hte adobe pro:) I answered at the same time:)
-
4. Re: Spry Accordion
Chepe Nicoli Jan 22, 2009 1:46 PM (in response to Chepe Nicoli)Great... I will try it.
Thank you!!!

