From f1e7e91ea4ac020a075ef58e8723b3f80edbbcc1 Mon Sep 17 00:00:00 2001 From: Aysam Guerler Date: Tue, 25 Jun 2013 14:09:50 -0400 Subject: [PATCH] Fix Galaxy CSS utility --- static/scripts/utils/galaxy.css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/utils/galaxy.css.js b/static/scripts/utils/galaxy.css.js index d5c725fab85..4e9ebfc56fe 100644 --- a/static/scripts/utils/galaxy.css.js +++ b/static/scripts/utils/galaxy.css.js @@ -28,7 +28,7 @@ function get_attribute (classname, name) function load_file (url) { // check if css is already available - if (!$('link[href="' + url + '"]').length) + if (!$('link[href^="' + url + '"]').length) $('').appendTo('head'); };