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

Version 1.4.7: Fix image error for post lists and improve design

This commit is contained in:
trendschau
2021-07-01 13:01:19 +02:00
parent 64d45c67c1
commit a8537f6426
4 changed files with 31 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ class Assets
$this->inlineJS = array();
$this->inlineCSS = array();
$this->editorJS = array();
$this->editorCSS = array();
$this->editorCSS = array();
$this->editorInlineJS = array();
$this->svgSymbols = array();
$this->imageUrl = false;
@@ -136,7 +136,12 @@ class Assets
public function src()
{
return $this->baseUrl . '/' . $this->imageUrl;
# when we finish it, we shoud reset all settings
$imagePath = $this->baseUrl . '/' . $this->imageUrl;
$this->imageUrl = false;
$this->imageFolder = 'original';
return $imagePath;
}
public function addCSS($CSS)