Hi, I tried using v1.6.0 of the scriptaculous libraries (including latest prototype library) in one of my existing apps that uses the 1.5.1 version, and found that IE 6 was very unstable. Actions get slower and slower over time until the page is basically unusable. This continues until the browser window closes - a page refresh does not solve the problem. I can''t provide the exact code that is causing the problem though. This would indicate to me that there is something leaking now that wasn''t leaking before - has anyone else noticed this? Sam Piper SENIOR DEVELOPER domain.com.au Level 3 Wharf 7 Pirrama Road Pyrmont NSW 2009 D. 02 8596 4405 M. 0421 665 279 E. spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org I. www.domain.com.au <http://www.domain.com.au/> Part of the Fairfax Digital Network -------------------------------------- _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
I can confirm this... Specifically I''m seeing issues with the $$ function. This simple code thrashes IE. The cpu goes to 100% and I can watch IE consume ram... $$(''.Grid_ItemRow'').each(function(element, index) { Event.observe(element, ''mouseover'', function() { element.className=''Grid_ItemRowHover'';}); }); Jim On 3/29/06, Sam Piper <spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org> wrote:> > Hi, I tried using v1.6.0 of the scriptaculous libraries (including latest > prototype library) in one of my existing apps that uses the 1.5.1 version, > and found that IE 6 was very unstable. Actions get slower and slower over > time until the page is basically unusable. This continues until the browser > window closes – a page refresh does not solve the problem. I can''t provide > the exact code that is causing the problem though. > > > > This would indicate to me that there is something leaking now that wasn''t > leaking before – has anyone else noticed this? > > > > *Sam Piper* > > *SENIOR DEVELOPER*** > > > > *domain.com.au* > > Level 3 Wharf 7 Pirrama Road > > Pyrmont NSW 2009 > > D. 02 8596 4405 > > M. 0421 665 279 > > E. spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org > > I. www.domain.com.au > > > > Part of the Fairfax Digital Network > > -------------------------------------- > > > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > >_______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
See http://dev.rubyonrails.org/ticket/4465 There''s a resolution/patch to prototype.js at http://dev.rubyonrails.org/changeset/4094 -Thomas Am 30.03.2006 um 08:11 schrieb Jim Geurts:> I can confirm this... Specifically I''m seeing issues with the $$ > function. > > This simple code thrashes IE. The cpu goes to 100% and I can watch > IE consume ram... > > $$(''.Grid_ItemRow'').each(function(element, index) { > Event.observe(element, ''mouseover'', function() > { element.className=''Grid_ItemRowHover'';}); > }); > > > Jim > > On 3/29/06, Sam Piper <spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org> wrote: > Hi, I tried using v1.6.0 of the scriptaculous libraries (including > latest prototype library) in one of my existing apps that uses the > 1.5.1 version, and found that IE 6 was very unstable. Actions get > slower and slower over time until the page is basically unusable. > This continues until the browser window closes – a page refresh > does not solve the problem. I can''t provide the exact code that is > causing the problem though. > > > This would indicate to me that there is something leaking now that > wasn''t leaking before – has anyone else noticed this? > > > Sam Piper > > SENIOR DEVELOPER > > > domain.com.au > > Level 3 Wharf 7 Pirrama Road > > Pyrmont NSW 2009 > > D. 02 8596 4405 > > M. 0421 665 279 > > E. spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org > > I. www.domain.com.au > > > Part of the Fairfax Digital Network > > -------------------------------------- > > > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
That seems to fix the issue with IE, but it also seems to adversely affect the performance in Firefox... have you noticed any performance issues with that patch & Firefox, also? On 3/30/06, Thomas Fuchs <t.fuchs-moWQItti3gBl57MIdRCFDg@public.gmane.org> wrote:> > See http://dev.rubyonrails.org/ticket/4465 > > There''s a resolution/patch to prototype.js at > http://dev.rubyonrails.org/changeset/4094 > > -Thomas > > Am 30.03.2006 um 08:11 schrieb Jim Geurts: > > > I can confirm this... Specifically I''m seeing issues with the $$ > > function. > > > > This simple code thrashes IE. The cpu goes to 100% and I can watch > > IE consume ram... > > > > $$(''.Grid_ItemRow'').each(function(element, index) { > > Event.observe(element, ''mouseover'', function() > > { element.className=''Grid_ItemRowHover'';}); > > }); > > > > > > Jim > > > > On 3/29/06, Sam Piper <spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org> wrote: > > Hi, I tried using v1.6.0 of the scriptaculous libraries (including > > latest prototype library) in one of my existing apps that uses the > > 1.5.1 version, and found that IE 6 was very unstable. Actions get > > slower and slower over time until the page is basically unusable. > > This continues until the browser window closes – a page refresh > > does not solve the problem. I can''t provide the exact code that is > > causing the problem though. > > > > > > This would indicate to me that there is something leaking now that > > wasn''t leaking before – has anyone else noticed this? > > > > > > Sam Piper > > > > SENIOR DEVELOPER > > > > > > domain.com.au > > > > Level 3 Wharf 7 Pirrama Road > > > > Pyrmont NSW 2009 > > > > D. 02 8596 4405 > > > > M. 0421 665 279 > > > > E. spiper-Aut7JobDRZPm3cQGBu7GGSkBLnlaf3ui@public.gmane.org > > > > I. www.domain.com.au > > > > > > Part of the Fairfax Digital Network > > > > -------------------------------------- > > > > > > > > _______________________________________________ > > Rails-spinoffs mailing list > > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > > > > > _______________________________________________ > > Rails-spinoffs mailing list > > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >_______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs