assets/ -> resources/assets/

This commit is contained in:
Ben Word
2017-04-03 18:33:06 -06:00
parent 700a556c02
commit c3e6f1324e
35 changed files with 21 additions and 21 deletions

View File

@@ -0,0 +1,5 @@
export default {
init() {
// JavaScript to be fired on the about us page
},
};

View File

@@ -0,0 +1,8 @@
export default {
init() {
// JavaScript to be fired on all pages
},
finalize() {
// JavaScript to be fired on all pages, after page specific JS is fired
},
};

View File

@@ -0,0 +1,8 @@
export default {
init() {
// JavaScript to be fired on the home page
},
finalize() {
// JavaScript to be fired on the home page, after the init JS
},
};