src/js/init.js
author ymh <ymh.work@gmail.com>
Mon, 02 Feb 2026 17:04:46 +0100
changeset 1081 f13d4f5b8766
parent 1072 ac1eacb3aa33
permissions -rw-r--r--
Correct full screen button

/* Initialization of the namespace */
import {$,jQuery} from 'jquery';
window.$ = $;
window.jQuery = jQuery;
global.$ = $;
global.jQuery = jQuery;

import 'jquery-ui/dist/jquery-ui';

import 'jquery-ui/dist/themes/base/jquery-ui.css';

import _ from "lodash";

const __APP_VERSION__ = "";

const APP_VERSION = __APP_VERSION__;

const IriSP = {
  VERSION: APP_VERSION,
  jQuery: jQuery,
  libFiles: { locations: {} },

};

window.IriSP = IriSP;

export default IriSP;