It doesn't work on IE and Opera for me either. I've checked out latest
prototype's from git to no avail. All line numbers I mention
correspond however to the stable version 1.6.0.2 (latest)
I've traced down the problem to the line 1457:
else receiver.update(responseText);
which calls the function defined on line 1592:
update: function(element, content) {
element = $(element);
if (content && content.toElement) content = content.toElement();
if (Object.isElement(content)) return
element.update().insert(content);
content = Object.toHTML(content);
element.innerHTML = content.stripScripts();
content.evalScripts.bind(content).defer();
return element;
},
This function is never executed on IE 6/7 or Opera 9.50. Hence the
update never happens.
Works fine on FF2/3 and latest Windows Safari.
Cheers,
Luis
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---