Skip to content

Commit

Permalink
Update Theme-Customs
Browse files Browse the repository at this point in the history
Signed-off-by: Diego Andrés <[email protected]>
  • Loading branch information
DiegoAndresCortes committed Aug 10, 2024
1 parent 7a89041 commit 0745389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions themecustoms/Theme/Load.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ private function css() : void
[
'attributes' => $options['css']['attributes'] ?? [],
'external' => $options['css']['external'] ?? false,
'minimize' => $options['css']['minimize'] ?? false,
'minimize' => $options['css']['minimize'] ?? true,
'order_pos' => $options['css']['order_pos'] ?? abs($this->order--),
],
'customtheme_' . $file
Expand All @@ -241,7 +241,7 @@ private function css() : void
(empty($options['default']) ? 'custom/' : '') . (!is_array($options) ? $options : $file) . '.css',
[
'attributes' => $options['attributes'] ?? [],
'minimize' => $options['minimize'] ?? false,
'minimize' => $options['minimize'] ?? true,
'order_pos' => $options['order_pos'] ?? abs($this->order--),
],
'customtheme_' . (!is_array($options) ? $options : $file)
Expand Down Expand Up @@ -292,7 +292,7 @@ private function js() : void
'attributes' => $options['js']['attributes'] ?? [],
'defer' => $options['js']['defer'] ?? false,
'external' => $options['js']['external'] ?? false,
'minimize' => $options['js']['minimize'] ?? false,
'minimize' => $options['js']['minimize'] ?? true,
],
'customtheme_' . $file
);
Expand Down

0 comments on commit 0745389

Please sign in to comment.