Skip to content

Commit

Permalink
Merge branch 'qa/14' into develop
Browse files Browse the repository at this point in the history
Forward port #14
  • Loading branch information
michalbundyra committed Apr 16, 2020
2 parents d3e5802 + 855ae2b commit ffb4856
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ All notable changes to this project will be documented in this file, in reverse

### Changed

- Nothing.
- [#14](https://github.com/mezzio/mezzio-skeleton/pull/14) updates asset: [jQuery 3.5.0](https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/).

### Deprecated

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $this->headLink()
->prependStylesheet('https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css');
$this->inlineScript()
->prependFile('https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js')
->prependFile('https://code.jquery.com/jquery-3.4.1.min.js');
->prependFile('https://code.jquery.com/jquery-3.5.0.min.js');
?>
<!DOCTYPE html>
<html>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
</div>
</footer>

<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<?=$this->section('javascript')?>
</body>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
</div>
</footer>

<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://code.jquery.com/jquery-3.5.0.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
{% block javascript %}{% endblock %}
</body>
Expand Down

0 comments on commit ffb4856

Please sign in to comment.