misc_pterodactyl-panel/resources/assets/scripts/bootstrap.ts

34 lines
924 B
TypeScript
Raw Normal View History

import axios from './api/http';
2018-06-06 06:42:34 +00:00
window._ = require('lodash');
/**
* We'll load jQuery and the Bootstrap jQuery plugin which provides support
* for JavaScript based Bootstrap features such as modals and tabs. This
* code may be modified to fit the specific needs of your application.
*/
try {
window.$ = window.jQuery = require('jquery');
2019-02-10 05:15:45 +00:00
} catch (e) {
}
2018-06-06 06:42:34 +00:00
window.axios = axios;
/**
* Next we will register the CSRF Token as a common header with Axios so that
* all outgoing HTTP requests automatically have it attached. This is just
* a simple convenience so we don't have to attach every token manually.
*/
let token = document.head.querySelector('meta[name="csrf-token"]');
if (token) {
2018-12-30 18:41:36 +00:00
// @ts-ignore
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
2018-12-30 18:41:36 +00:00
// @ts-ignore
2018-03-31 21:44:20 +00:00
window.X_CSRF_TOKEN = token.content;
} else {
console.error('CSRF token not found in document.');
}