Actions
Defect #9775
closedapp/views/repository/_revision_graph.html.erb sets window.onload directly..
Start date:
Due date:
% Done:
0%
Estimated time:
Resolution:
Fixed
Affected version:
Description
The subject says it all. The partial _revision_graph.html.erb (in app/views/repository) sets window.onload directly. As a result of setting window.onload directly, it toasts other onload events on the repository page (currently messing with a plugin that I have).
Instead of:
window.onload = function() { stuff; };
should use the prototype syntax used elsewhere in Redmine:
Event.observe(window,"load",function(){ stuff; });
I believe that this started showing up when I pulled down the 1.2.2 updates (not entire sure of timeline)
Actions