Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 38 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | window._ = require('lodash'); |
||
2 | |||
3 | /** |
||
4 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support |
||
5 | * for JavaScript based Bootstrap features such as modals and tabs. This |
||
6 | * code may be modified to fit the specific needs of your application. |
||
7 | */ |
||
8 | |||
9 | window.$ = window.jQuery = require('jquery'); |
||
10 | |||
11 | require('bootstrap-sass'); |
||
12 | require('bootstrap-material-design'); |
||
13 | |||
14 | /** |
||
15 | * We'll load the axios HTTP library which allows us to easily issue requests |
||
16 | * to our Laravel back-end. This library automatically handles sending the |
||
17 | * CSRF token as a header based on the value of the "XSRF" token cookie. |
||
18 | */ |
||
19 | |||
20 | window.axios = require('axios'); |
||
21 | |||
22 | /** |
||
23 | * Setup moment.js |
||
24 | */ |
||
25 | window.moment = require('moment'); |
||
26 | |||
27 | /** |
||
28 | * Kendo UI |
||
29 | */ |
||
30 | require('kendo-ui-core'); |
||
31 | |||
32 | /** |
||
33 | * Autosize |
||
34 | */ |
||
35 | window.autosize = require('autosize'); |
||
36 | |||
37 | import Vue from 'vue'; |
||
38 | window.Vue = Vue; |
||
39 | |||
42 | // window.Pusher = require('pusher-js'); |