[hg] galaxy 2615: IE fixes for menu buttons
details: http://www.bx.psu.edu/hg/galaxy/rev/168a6ef6a99a changeset: 2615:168a6ef6a99a user: James Taylor <james@jamestaylor.org> date: Sun Aug 23 17:13:04 2009 -0400 description: IE fixes for menu buttons 3 file(s) affected in this change: static/scripts/galaxy.base.js templates/history/grid.mako templates/workflow/list.mako diffs (36 lines): diff -r b8205e8e077f -r 168a6ef6a99a static/scripts/galaxy.base.js --- a/static/scripts/galaxy.base.js Sun Aug 23 15:16:43 2009 -0400 +++ b/static/scripts/galaxy.base.js Sun Aug 23 17:13:04 2009 -0400 @@ -59,7 +59,7 @@ // container_element = container_element.parent(); // } // ontainer_element).css( "position", "relative" ); - var menu_element = $( "<ul id='" + button_element.attr('id') + "-menu'></div>" ); + var menu_element = $( "<ul id='" + button_element.attr('id') + "-menu'></ul>" ); $.each( options, function( k, v ) { if ( v ) { $( "<li/>" ).html( k ).click( v ).appendTo( menu_element ); diff -r b8205e8e077f -r 168a6ef6a99a templates/history/grid.mako --- a/templates/history/grid.mako Sun Aug 23 15:16:43 2009 -0400 +++ b/templates/history/grid.mako Sun Aug 23 17:13:04 2009 -0400 @@ -158,7 +158,7 @@ extra = "" %> %if href: - <td><div class="menubutton split"><a class="label" href="${href}">${v}${extra}</a></td> + <td><div class="menubutton split" style="float: left;"><a class="label" href="${href}">${v}${extra}</a> </td> %else: <td >${v}${extra}</td> %endif diff -r b8205e8e077f -r 168a6ef6a99a templates/workflow/list.mako --- a/templates/workflow/list.mako Sun Aug 23 15:16:43 2009 -0400 +++ b/templates/workflow/list.mako Sun Aug 23 17:13:04 2009 -0400 @@ -37,7 +37,7 @@ %for i, workflow in enumerate( workflows ): <tr> <td> - <div class="menubutton"> + <div class="menubutton" style="float: left;"> <a id="wf-${i}-popup" class="arrow" style="display: none;"><span>▼</span></a> ${workflow.name} </div>
participants (1)
-
Greg Von Kuster