This repository has been archived on 2023-02-03. You can view files and clone it, but cannot push or open issues or pull requests.
autonomic.zone/js/_settings.js

13 lines
217 B
JavaScript

var cj = cj ? cj : {};
(function($) {
$.extend(cj, {
settings: {
// cache some common variables
$window: $(window),
$html: $('html'),
$body: $('body'),
$htmlbody: $('html,body')
}
});
}(jQuery));