Skip to content

Commit

Permalink
Autoloader: Fixed the directory of scripts (#1828)
Browse files Browse the repository at this point in the history
This fixes some incorrect script paths.
  • Loading branch information
RunDevelopment authored Mar 24, 2019
1 parent 77c5744 commit fd4c764
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions plugins/autoloader/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ <h1>Examples</h1>
<script src="components.js"></script>
<script src="scripts/code.js"></script>

<script src="vendor/promise.js"></script>
<script src="vendor/jszip.min.js"></script>
<script src="vendor/FileSaver.min.js"></script>
<script src="scripts/vendor/promise.js"></script>
<script src="scripts/vendor/jszip.min.js"></script>
<script src="scripts/vendor/FileSaver.min.js"></script>
<script>
function getZip(files, elt) {
return new Promise(function (resolve, reject) {
Expand Down

0 comments on commit fd4c764

Please sign in to comment.