Skip to content

Commit 5d5908f

Browse files
committed
Fix asset path for public deployments
1 parent 38449a6 commit 5d5908f

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
99
### Changed
1010
- Column values default to 'data' only on NULL instead of any 'emptiness'
1111

12+
### Fixed
13+
- Moved public assets back into bundle's public folder
14+
1215
## [0.1.2] - 2017-12-14
1316
### Added
1417
- Implement persist_state parameter to automate table state persistence

docs/source/index.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ otherwise we render a template with the table provided as a parameter.
110110
<div id="presidents">Loading...</div>
111111

112112
<!-- Insert this at the end of your body element, but before the closing tag -->
113-
<script src="bundles/datatables/js/datatables.js"></script>
113+
<script src="{{ asset('bundles/datatables/js/datatables.js') }}"></script>
114114
<script>
115115
$(function() {
116116
$('#presidents').initDataTables({{ datatable_settings(datatable) }});
File renamed without changes.

0 commit comments

Comments
 (0)