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 'bootstrap/dist/js/bootstrap.min.js';
-
- // Bootstrap - autocomplete
- import 'bootstrap-autocomplete';
-
- // Select2
- import 'select2/js/select2.min.js';
- import 'select2/js/i18n/fr.js';
- import 'select2/css/select2.min.css';
- import 'select2-bootstrap-theme';
-
- // Toastr
- import toastr from 'toastr/toastr.js' ;
- import 'toastr/toastr.scss' ;
- global.toastr = toastr ;
-
- // DaterangePicker
- import 'moment' ;
- import 'daterangepicker/daterangepicker.js' ;
- import 'daterangepicker/daterangepicker.css' ;
-
- // Tools
- import { SovTools } from '../../../functions/tools.js';
- global.SovTools = SovTools;
-
-
- // Prices
- import { SovPrices } from '../../../functions/prices.js';
- global.SovPrices = SovPrices;
-
- // Widgets
- import { SovWidgetCollection } from '../../../functions/widget-collection.js';
- global.SovWidgetCollection = SovWidgetCollection;
-
- // Widgets
- import { SovWidgets } from '../../../functions/widgets.js';
- global.SovWidgets = SovWidgets;
-
- import { SovNotification } from '../../../functions/notification.js';
- global.SovNotification = SovNotification;
-
-
-
-
|