silverstripe-framework/javascript/src/jQuery.js

9 lines
264 B
JavaScript

/**
* This wraps the global jQuery so jQuery can be imported
* like other modules. Once jQuery is updated and managed
* by npm we can get rid of this wrapper.
*/
var jQuery = typeof window.jQuery !== 'undefined' ? window.jQuery : null;
export default jQuery;