Restructuring of scripts for better use of ES6 concepts

- Optimized use of common properties (, , ...)
- Dispatching events in an attempt to de-globalize certain variables used in the past
- Attempt to organize files in a more logical manner
This commit is contained in:
dominiclord
2016-05-18 23:12:36 -04:00
parent 09016521ed
commit f07a6aba23
12 changed files with 159 additions and 213 deletions

View File

@@ -0,0 +1,6 @@
const $document = $(document);
const $window = $(window);
const $html = $(document.documentElement);
const $body = $(document.body);
export { $document, $window, $html, $body };