Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
-
- // JQuery
- import 'jquery';
- global.$ = global.jQuery = $;
-
- // Adminlte
- import 'adminlte-js' ;
-
- // Bootstrap
- import 'adminlte-plugin/bootstrap/js/bootstrap.min.js';
-
- // Select2
- import 'adminlte-plugin/select2/js/select2.min.js';
- import 'adminlte-plugin/select2/js/i18n/fr.js';
- import 'adminlte-plugin/select2/css/select2.min.css';
- import 'adminlte-plugin/select2-bootstrap4-theme/select2-bootstrap4.min.css';
-
- // Toastr
- import toastr from 'toastr/toastr.js' ;
- import 'toastr/toastr.scss' ;
- global.toastr = toastr ;
-
- // Tools
- import { Tools } from '../../../tools/tools.js';
- global.Tools = Tools;
-
- import { Notification } from './js/notification.js';
- global.Notification = Notification;
- Notification.init() ;
-
- // Common
- import './common.scss';
- import './common.js' ;
-
-
-
|