##// END OF EJS Templates
Fixed r1024: context submenus on the issue list don’t show up with IE6....
Jean-Philippe Lang -
r1012:7eec53922273
parent child
Show More
@@ -39,6 +39,9 ContextMenu.prototype = {
39 this.selection = tr;
39 this.selection = tr;
40 var id = tr.id.substring(6, tr.id.length);
40 var id = tr.id.substring(6, tr.id.length);
41 /* TODO: do not hard code path */
41 /* TODO: do not hard code path */
42 new Ajax.Updater({success:'context-menu'}, '../../issues/context_menu/' + id, {asynchronous:true, evalScripts:true, onComplete:function(request){Effect.Appear('context-menu', {duration: 0.20})}})
42 new Ajax.Updater({success:'context-menu'}, '../../issues/context_menu/' + id, {asynchronous:true, evalScripts:true, onComplete:function(request){
43 Effect.Appear('context-menu', {duration: 0.20});
44 if (window.parseStylesheets) { window.parseStylesheets(); }
45 }})
43 }
46 }
44 }
47 }
General Comments 0
You need to be logged in to leave comments. Login now