mirror of
https://github.com/ViViDboarder/Vivid-Casper.git
synced 2024-11-04 20:36:33 +00:00
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
/**
|
|
* Placeholder JS file for Casper behaviours
|
|
*/
|
|
|
|
/*globals jQuery, document */
|
|
(function ($) {
|
|
"use strict";
|
|
|
|
$(document).ready(function () {
|
|
// code goes here
|
|
});
|
|
}(jQuery)); |