1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/228f1b4066be/ Changeset: 228f1b4066be User: guerler Date: 2013-09-11 18:15:13 Summary: Ensure availability of window.Galaxy variable Affected #: 2 files diff -r 99cc1ee095c39f800ffc8a6bf36912fcd6cd06e9 -r 228f1b4066be9fc49f6f07ff6867566836134c67 templates/base/base_panels.mako --- a/templates/base/base_panels.mako +++ b/templates/base/base_panels.mako @@ -81,6 +81,9 @@ if (window != window.top) $('<link href="' + galaxy_config.root + 'static/style/galaxy.frame.masthead.css" rel="stylesheet">').appendTo('head'); + // start a Galaxy namespace for objects created + window.Galaxy = window.Galaxy || {}; + // console protection window.console = window.console || { log : function(){}, diff -r 99cc1ee095c39f800ffc8a6bf36912fcd6cd06e9 -r 228f1b4066be9fc49f6f07ff6867566836134c67 templates/webapps/galaxy/galaxy.panels.mako --- a/templates/webapps/galaxy/galaxy.panels.mako +++ b/templates/webapps/galaxy/galaxy.panels.mako @@ -58,6 +58,9 @@ ## make sure console exists <script type="text/javascript"> + // start a Galaxy namespace for objects created + window.Galaxy = window.Galaxy || {}; + // console protection window.console = window.console || { 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.