20 lines
414 B
JavaScript
20 lines
414 B
JavaScript
'use strict';
|
|
|
|
/*
|
|
Hey there!
|
|
|
|
This is the client file for your theme. If you need to do any client-side work in javascript,
|
|
this is where it needs to go.
|
|
|
|
You can listen for page changes by writing something like this:
|
|
|
|
$(window).on('action:ajaxify.end', function(ev, data) {
|
|
var url = data.url;
|
|
console.log('I am now at: ' + url);
|
|
});
|
|
*/
|
|
|
|
$(document).ready(function () {
|
|
// Your code goes here
|
|
});
|