Skip to content
This repository was archived by the owner on Jan 1, 2020. It is now read-only.

Commit 9984f8d

Browse files
committed
Fix asset order
I incorrectly reverted the changes in #343, and didn't correct the order to what was used previously. This patch fixes that. - CSS order (when emitted): - bootstrap.min.css - bootstrap-theme.min.css - style.css - JS order (when emitted): - jquery-2.2.4.min.js - bootstrap.min.js
1 parent 65257fe commit 9984f8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

module/Application/view/layout/layout.phtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212

1313
<!-- Le styles -->
1414
<?= $this->headLink(['rel' => 'shortcut icon', 'type' => 'image/vnd.microsoft.icon', 'href' => $this->basePath() . '/img/favicon.ico'])
15-
->prependStylesheet($this->basePath('css/bootstrap.min.css'))
16-
->prependStylesheet($this->basePath('css/bootstrap-theme.min.css'))
1715
->prependStylesheet($this->basePath('css/style.css'))
16+
->prependStylesheet($this->basePath('css/bootstrap-theme.min.css'))
17+
->prependStylesheet($this->basePath('css/bootstrap.min.css'))
1818
?>
1919

2020
<!-- Scripts -->
2121
<?= $this->headScript()
22-
->prependFile($this->basePath('js/jquery-2.2.4.min.js'))
2322
->prependFile($this->basePath('js/bootstrap.min.js'))
23+
->prependFile($this->basePath('js/jquery-2.2.4.min.js'))
2424
?>
2525
</head>
2626
<body>

0 commit comments

Comments
 (0)