Active Scaffold Fix - 05/13/2008
It seems active_scaffold breaks with firefox 3 beta 2. Below is the fix that worked for me.
To fix this change line 266 of active_scaffold.js from
this.adapter.getElementsByClassName('cancel').each(function(elem) {
to
this.adapter.select('.cancel').each(function(elem) {
From this thread at google
Post a Comment