Added linebreak at end of script and stylesheet tags, for readability in html source.

This commit is contained in:
rjy7 2010-07-28 16:20:10 +00:00
parent f4b6f3e941
commit 5359909ae7
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ public class Scripts extends Files {
}
protected String getTag(String url) {
return "<script type=\"text/javascript\" src=\"" + url + "\"></script>";
return "<script type=\"text/javascript\" src=\"" + url + "\"></script>\n";
}
protected String getThemeSubDir() {

View file

@ -13,7 +13,7 @@ public class Stylesheets extends Files {
}
protected String getTag(String url) {
return "<link rel=\"stylesheet\" href=\"" + url + "\" />";
return "<link rel=\"stylesheet\" href=\"" + url + "\" />\n";
}
protected String getThemeSubDir() {