1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/8b60ec04bea6/ Changeset: 8b60ec04bea6 Branch: stable User: guerler Date: 2013-11-12 18:44:04 Summary: UI: Fix load order of masthead Affected #: 1 file diff -r 98a10ba60640eabb7604778a87937aa17e30f73b -r 8b60ec04bea623eeb7ba3b370302cf4e123119d7 templates/webapps/galaxy/galaxy.masthead.mako --- a/templates/webapps/galaxy/galaxy.masthead.mako +++ b/templates/webapps/galaxy/galaxy.masthead.mako @@ -34,11 +34,13 @@ $('<link href="' + galaxy_config.root + 'static/style/galaxy.frame.masthead.css" rel="stylesheet">').appendTo('head'); ## load galaxy js-modules - require(['galaxy.master', 'galaxy.frame', 'galaxy.modal'], function(master, frame, modal) - { - Galaxy.master = new master.GalaxyMaster(); - Galaxy.frame_manager = new frame.GalaxyFrameManager(); - Galaxy.modal = new modal.GalaxyModal(); + $(function() { + require(['galaxy.master', 'galaxy.frame', 'galaxy.modal'], function(master, frame, modal) + { + Galaxy.master = new master.GalaxyMaster(); + Galaxy.frame_manager = new frame.GalaxyFrameManager(); + Galaxy.modal = new modal.GalaxyModal(); + }); }); </script> 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.