commit/galaxy-central: carlfeberhard: History options: have 'Purge deleted datasets' update the user disk size
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/b67a59a2beca/ Changeset: b67a59a2beca User: carlfeberhard Date: 2014-04-29 19:21:56 Summary: History options: have 'Purge deleted datasets' update the user disk size Affected #: 1 file diff -r b526afe822e53ce530fabe94dff683818a33b29a -r b67a59a2beca5072eb19ad7c7e20beb40adda8da templates/webapps/galaxy/root/index.mako --- a/templates/webapps/galaxy/root/index.mako +++ b/templates/webapps/galaxy/root/index.mako @@ -17,9 +17,6 @@ <%def name="javascripts()"> ${parent.javascripts()} ${tool_menu_javascripts()} - ${h.js( - "utils/LazyDataLoader" - )} </%def><%def name="late_javascripts()"> @@ -95,6 +92,10 @@ "${_("Purge Deleted Datasets")}": function() { if ( confirm( "Really delete all deleted datasets permanently? This cannot be undone." ) ) { galaxy_main.location = "${h.url_for( controller='history', action='purge_deleted_datasets' )}"; + // update the user disk size when the purge page loads + $( '#galaxy_main' ).load( function(){ + Galaxy.user.fetch(); + }) } }, "${_("Show Structure")}": function() { Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org