Vote #71048
完了app/views/repository/_revision_graph.html.erb sets window.onload directly..
0%
説明
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)
journals
Fixed in r8209.
--------------------------------------------------------------------------------
Merged.
--------------------------------------------------------------------------------