Skip to content
Snippets Groups Projects
Commit e120d8c9 authored by Guy Bedford's avatar Guy Bedford
Browse files

base path fix - although still not quite right

parent 9130b3ed
Branches
Tags 7.x-1.0-beta 7.x-2.0-beta 7.x-2.0-beta1
No related merge requests found
......@@ -2,6 +2,8 @@
$('link').each(function() {
if ($(this).attr('href').match(/\.less$/i) != null) {
$(this).attr('rel', 'stylesheet/less');
var href = $(this).attr('href');
$(this).attr('href', '/' + href);
}
});
})(jQuery);
\ No newline at end of file
})(jQuery);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment