[hg] galaxy 2544: Overview improvements:
details: http://www.bx.psu.edu/hg/galaxy/rev/73ac2b7cad26 changeset: 2544:73ac2b7cad26 user: Kanwei Li <kanwei@gmail.com> date: Thu Aug 06 14:43:51 2009 -0400 description: Overview improvements: - Open/close arrows - Resizable icon - Max and min size for overview 3 file(s) affected in this change: static/images/overview_arrows.png static/images/resizable.png templates/workflow/editor.mako diffs (44 lines): diff -r db619431fa8f -r 73ac2b7cad26 static/images/overview_arrows.png Binary file static/images/overview_arrows.png has changed diff -r db619431fa8f -r 73ac2b7cad26 static/images/resizable.png Binary file static/images/resizable.png has changed diff -r db619431fa8f -r 73ac2b7cad26 templates/workflow/editor.mako --- a/templates/workflow/editor.mako Thu Aug 06 11:32:14 2009 -0400 +++ b/templates/workflow/editor.mako Thu Aug 06 14:43:51 2009 -0400 @@ -119,6 +119,19 @@ workflow.fit_canvas_to_nodes(); scroll_to_nodes(); canvas_manager.draw_overview(); + }); + + /* Lets the viewport be toggled visible and invisible, adjusting the arrows accordingly */ + $("#close-viewport").click( function() { + if ( $("#overview-border").css("right") == "0px" ) { + $("#overview-border").css("right", "20000px"); + $("#close-viewport").css("background-position", "12px 0px"); + + } else { + $("#overview-border").css("right", "0px"); + $("#close-viewport").css("background-position", "0px 0px"); + } + }); // Unload handler @@ -629,7 +642,7 @@ <div id="canvas-viewport" style="width: 100%; height: 100%; position: absolute; overflow: hidden; background: #EEEEEE; background: white url(${h.url_for('/static/images/light_gray_grid.gif')}) repeat;"> <div id="canvas-container" style="position: absolute; width: 100%; height: 100%;"></div> </div> - <div id="overview-border" style="position: absolute; width: 150px; height: 150px; right: 0; bottom: 0; border-top: solid gray 1px; border-left: solid grey 1px; padding: 7px 0 0 7px; background: #EEEEEE; z-index: 50000; overflow: hidden;"> + <div id="overview-border" style="position: absolute; width: 150px; height: 150px; right: 0px; bottom: 0px; border-top: solid gray 1px; border-left: solid grey 1px; padding: 7px 0 0 7px; background: #EEEEEE no-repeat url(${h.url_for('/static/images/resizable.png')}); z-index: 20000; overflow: hidden; max-width: 300px; max-height: 300px; min-width: 50px; min-height: 50px"> <div style="position: relative; overflow: hidden; width: 100%; height: 100%; border-top: solid gray 1px; border-left: solid grey 1px;"> <div id="overview" style="position: absolute;"> <canvas width="0" height="0" style="background: white; width: 100%; height: 100%;" id="overview-canvas"></canvas> @@ -637,6 +650,7 @@ </div> </div> </div> + <div id="close-viewport" style="border-left: 1px solid #999; border-top: 1px solid #999; background: #ddd url(${h.url_for('/static/images/overview_arrows.png')}); position: absolute; right: 0px; bottom: 0px; width: 12px; height: 12px; z-index: 25000;"></div> </div> </%def>
participants (1)
-
Greg Von Kuster