13 lines
217 B
JavaScript
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));
|