aboutsummaryrefslogtreecommitdiff
path: root/themes/ananke/src/js/main.js
blob: 0511770fc16fbac853e2bb35342f37d12b7110e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import styles from './../css/main.css';


// NOTE: TO use Jquery, just call the modules you want
// var $ = require('jquery/src/core');
// require('jquery/src/core/init');
// require('jquery/src/manipulation');

// OR, use all of them
// var $ = require('jquery/src/jquery');

// And write your code
// $('body').append('<p>Jquery is working</p>');
//
// You can also "require" any script from its location in the node modules folder. Webpack often knows what to look for, but you can add a script directly like this:
// var javascriptthingy = require('name/folder/file.js');