src/js/init.js
author ymh <ymh.work@gmail.com>
Sat, 19 Oct 2024 01:34:55 +0200
changeset 1075 92cb33eb7a75
parent 1072 ac1eacb3aa33
permissions -rw-r--r--
Preload image to avoid image flicker on play

/* 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;