Fix Galaxy CSS utility

This commit is contained in:
Aysam Guerler
2013-06-25 14:09:50 -04:00
parent fd75e49065
commit f1e7e91ea4
+1 -1
View File
@@ -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)
$('<link href="' + url + '" rel="stylesheet">').appendTo('head');
};