Files
notifications-admin/app/assets/javascripts/jquery-expose.js
T

8 lines
243 B
JavaScript
Raw Normal View History

2025-10-06 09:38:54 -04:00
// Expose jQuery and other libraries to window for legacy code
if (typeof jQuery !== 'undefined') {
window.jQuery = window.$ = jQuery;
}
if (typeof getCaretCoordinates !== 'undefined') {
window.getCaretCoordinates = getCaretCoordinates;
}