Files
OfficialSite/assets/scripts/utils/environment.js
dominiclord f07a6aba23 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
2016-05-18 23:12:36 -04:00

7 lines
179 B
JavaScript

const $document = $(document);
const $window = $(window);
const $html = $(document.documentElement);
const $body = $(document.body);
export { $document, $window, $html, $body };