commit/galaxy-central: guerler: UI: Fix nested history bug
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/d19e22bce1b8/ Changeset: d19e22bce1b8 User: guerler Date: 2013-12-11 22:39:20 Summary: UI: Fix nested history bug Affected #: 1 file diff -r b56f6e027d2ca3e8cb5ef6f6514e085107ac5dfc -r d19e22bce1b880b86b6245760bdf0d8c7d13366e lib/galaxy/webapps/galaxy/controllers/history.py --- a/lib/galaxy/webapps/galaxy/controllers/history.py +++ b/lib/galaxy/webapps/galaxy/controllers/history.py @@ -838,8 +838,8 @@ # Set imported history to be user's current history. trans.set_history( new_history ) return trans.show_ok_message( - message="""History "%s" has been imported. <br>You can <a href="%s">start using this history</a> or %s.""" - % ( new_history.name, web.url_for( '/' ), referer_message ), use_panels=True ) + message="""History "%s" has been imported. <br>You can <a href="%s" onclick="parent.window.location='%s';">start using this history</a> or %s.""" + % ( new_history.name, web.url_for( '/' ), web.url_for( '/' ), referer_message ), use_panels=True ) elif not user_history or not user_history.datasets or confirm: new_history = import_history.copy() new_history.name = "imported: " + new_history.name 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