/templates/history/grid.mako
https://bitbucket.org/cistrome/cistrome-harvard/ · Mako · 17 lines · 16 code · 1 blank · 0 comment · 2 complexity · 661e21157cb3d0ec81f2508b4d9b2cae MD5 · raw file
- <%inherit file="../grid_base.mako"/>
- <%def name="grid_javascripts()">
- ${parent.grid_javascripts()}
- <script type="text/javascript">
- %if refresh_frames:
- %if 'history' in refresh_frames:
- if ( parent.frames && parent.frames.galaxy_history ) {
- parent.frames.galaxy_history.location.href="${h.url_for( controller='root', action='history')}";
- if ( parent.force_right_panel ) {
- parent.force_right_panel( 'show' );
- }
- }
- %endif
- %endif
- </script>
- </%def>