1
0
mirror of https://github.com/typemill/typemill.git synced 2025-08-13 01:24:26 +02:00

Version 1.1.5: Switch to https and fix assets and design

This commit is contained in:
Sebastian
2018-05-11 11:31:47 +02:00
parent 501aef3c73
commit aefb9709cb
5 changed files with 6 additions and 6 deletions

View File

@@ -47,12 +47,12 @@ class Assets
public function renderCSS()
{
return implode('<br/>', $this->CSS) . implode('<br/>', $this->inlineCSS);
return implode('', $this->CSS) . implode('', $this->inlineCSS);
}
public function renderJS()
{
return implode('<br/>', $this->JS) . '<br/>' . implode('<br/>', $this->inlineJS);
return implode('', $this->JS) . implode('', $this->inlineJS);
}
/**