mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-22 07:16:13 +01:00
5 lines
192 B
JavaScript
5 lines
192 B
JavaScript
'use strict';
|
|
// Provides a require'able version of jQuery without leaking $ and jQuery;
|
|
window.$ = require('./jquery');
|
|
const jq = window.$.noConflict(true);
|
|
exports.jQuery = exports.$ = jq;
|