Files
caddy-proxy-manager/manager/src/frontend/js/main.js
Jamie Curnow 6e7435c35d Initial commit
2017-12-21 09:02:37 +10:00

23 lines
466 B
JavaScript

'use strict';
import promise from 'es6-promise';
import $ from 'jquery';
global.jQuery = $;
global.$ = $;
const App = require('./app/main');
// es6-promise nukes the Native Promise impl - restore it if this happens.
// See also https://github.com/jakearchibald/es6-promise/issues/140
const NativePromise = window.Promise;
if (NativePromise) {
window.Promise = NativePromise;
} else {
promise.polyfill();
}
$(document).ready(() => {
App.start();
});