[Rt-commit] r15297 - in rt/3.8/trunk: share/html/Ticket

falcone at bestpractical.com falcone at bestpractical.com
Wed Aug 20 11:40:17 EDT 2008


Author: falcone
Date: Wed Aug 20 11:40:16 2008
New Revision: 15297

Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/share/html/Ticket/Create.html

Log:
 r38668 at ketch:  falcone | 2008-08-20 11:39:48 -0400
 * force the getElementById to run during the onLoad handler, not instantly 
   (the element it is looking for doesn't exist yet)


Modified: rt/3.8/trunk/share/html/Ticket/Create.html
==============================================================================
--- rt/3.8/trunk/share/html/Ticket/Create.html	(original)
+++ rt/3.8/trunk/share/html/Ticket/Create.html	Wed Aug 20 11:40:16 2008
@@ -47,7 +47,7 @@
 %# END BPS TAGGED BLOCK }}}
 <& /Elements/Header,
     Title => loc("Create a new ticket"),
-    onload => "hide(document.getElementById('Ticket-Create-details'));" &>
+    onload => "function () { hide(document.getElementById('Ticket-Create-details')) }" &>
 <& /Elements/Tabs, 
     current_toptab => "Ticket/Create.html", 
     Title => loc("Create a new ticket"),


More information about the Rt-commit mailing list