First Commit
This commit is contained in:
commit
0c9a118281
633 changed files with 76612 additions and 0 deletions
25
public/js/German.json
Normal file
25
public/js/German.json
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
|
||||
{
|
||||
"sEmptyTable": "Keine Daten in der Tabelle vorhanden",
|
||||
"sInfo": "_START_ bis _END_ von _TOTAL_ Einträgen",
|
||||
"sInfoEmpty": "0 bis 0 von 0 Einträgen",
|
||||
"sInfoFiltered": "(gefiltert von _MAX_ Einträgen)",
|
||||
"sInfoPostFix": "",
|
||||
"sInfoThousands": ".",
|
||||
"sLengthMenu": "_MENU_ Einträge anzeigen",
|
||||
"sLoadingRecords": "Wird geladen...",
|
||||
"sProcessing": "Bitte warten...",
|
||||
"sSearch": "Suchen",
|
||||
"sZeroRecords": "Keine Einträge vorhanden.",
|
||||
"oPaginate": {
|
||||
"sFirst": "Erste",
|
||||
"sPrevious": "Zurück",
|
||||
"sNext": "Nächste",
|
||||
"sLast": "Letzte"
|
||||
},
|
||||
"oAria": {
|
||||
"sSortAscending": ": aktivieren, um Spalte aufsteigend zu sortieren",
|
||||
"sSortDescending": ": aktivieren, um Spalte absteigend zu sortieren"
|
||||
}
|
||||
}
|
||||
762
public/js/application.js
Normal file
762
public/js/application.js
Normal file
|
|
@ -0,0 +1,762 @@
|
|||
/******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, {
|
||||
/******/ configurable: false,
|
||||
/******/ enumerable: true,
|
||||
/******/ get: getter
|
||||
/******/ });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "/";
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ({
|
||||
|
||||
/***/ "./resources/assets/js/application.js":
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
__webpack_require__("./resources/assets/js/bootstrap.js");
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/js/bootstrap.js":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// Auto update layout
|
||||
if (window.layoutHelpers) {
|
||||
window.layoutHelpers.setAutoUpdate(true);
|
||||
}
|
||||
|
||||
$(function () {
|
||||
// Initialize sidenav
|
||||
$('#layout-sidenav').each(function () {
|
||||
new SideNav(this, {
|
||||
orientation: $(this).hasClass('sidenav-horizontal') ? 'horizontal' : 'vertical'
|
||||
});
|
||||
});
|
||||
|
||||
// Initialize sidenav togglers
|
||||
$('body').on('click', '.layout-sidenav-toggle', function (e) {
|
||||
e.preventDefault();
|
||||
window.layoutHelpers.toggleCollapsed();
|
||||
});
|
||||
|
||||
// Swap dropdown menus in RTL mode
|
||||
if ($('html').attr('dir') === 'rtl') {
|
||||
$('#layout-navbar .dropdown-menu').toggleClass('dropdown-menu-right');
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* We'll load the axios HTTP library which allows us to easily issue requests
|
||||
* to our Laravel back-end. This library automatically handles sending the
|
||||
* CSRF token as a header based on the value of the "XSRF" token cookie.
|
||||
*/
|
||||
|
||||
// window.axios = require('axios');
|
||||
//
|
||||
// window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
|
||||
/**
|
||||
* 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) {
|
||||
// window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
|
||||
// } else {
|
||||
// console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
|
||||
// }
|
||||
|
||||
/**
|
||||
* Echo exposes an expressive API for subscribing to channels and listening
|
||||
* for events that are broadcast by Laravel. Echo and event broadcasting
|
||||
* allows your team to easily build robust real-time web applications.
|
||||
*/
|
||||
|
||||
// import Echo from 'laravel-echo'
|
||||
|
||||
// window.Pusher = require('pusher-js');
|
||||
|
||||
// window.Echo = new Echo({
|
||||
// broadcaster: 'pusher',
|
||||
// key: process.env.MIX_PUSHER_APP_KEY,
|
||||
// cluster: process.env.MIX_PUSHER_APP_CLUSTER,
|
||||
// encrypted: true
|
||||
// });
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/sass/application.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/animate-css/animate.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/blueimp-gallery/gallery-indicator.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/blueimp-gallery/gallery-video.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/blueimp-gallery/gallery.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-datepicker/bootstrap-datepicker.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-daterangepicker/bootstrap-daterangepicker.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-duallistbox/bootstrap-duallistbox.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-markdown/bootstrap-markdown.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-material-datetimepicker/bootstrap-material-datetimepicker.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-maxlength/bootstrap-maxlength.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-multiselect/bootstrap-multiselect.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-select/bootstrap-select.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-slider/bootstrap-slider.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-sortable/bootstrap-sortable.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-sweetalert/bootstrap-sweetalert.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/bootstrap-table.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/auto-refresh/auto-refresh.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/click-edit-row/click-edit-row.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/filter-control/filter-control.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/group-by-v2/group-by-v2.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/group-by/group-by.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/multiple-selection-row/multiple-selection-row.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/reorder-rows/reorder-rows.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/sticky-header/sticky-header.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-table/extensions/tree-column/tree-column.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-tagsinput/bootstrap-tagsinput.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/bootstrap-tour/bootstrap-tour.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/c3/c3.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/chartist/chartist.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/cropper/cropper.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/datatables/datatables.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/dragula/dragula.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/dropzone/dropzone.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/flot/flot.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/flow-js/flow.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/fullcalendar/fullcalendar.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/growl/growl.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/jstree/themes/default-dark/style.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/jstree/themes/default/style.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/ladda/ladda.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/minicolors/minicolors.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/morris/morris.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/nestable/nestable.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/nouislider/nouislider.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/photoswipe/photoswipe.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/plyr/plyr.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/quill/editor.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/quill/typography.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/select2/select2.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/smartwizard/smartwizard.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/spinkit/spinkit.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/swiper/swiper.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/timepicker/timepicker.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/toastr/toastr.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/typeahead-js/typeahead.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/libs/vegas/vegas.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/appwork.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/bootstrap.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/colors.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/account.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/authentication.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/chat.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/clients.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/contacts.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/file-manager.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/messages.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/products.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/projects.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/search.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/tasks.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/tickets.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/pages/users.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/theme-corporate.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ "./resources/assets/vendor/sass/uikit.scss":
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
// removed by extract-text-webpack-plugin
|
||||
|
||||
/***/ }),
|
||||
|
||||
/***/ 0:
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
__webpack_require__("./resources/assets/js/application.js");
|
||||
__webpack_require__("./resources/assets/vendor/sass/bootstrap.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/appwork.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/theme-corporate.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/colors.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/uikit.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/animate-css/animate.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/blueimp-gallery/gallery-indicator.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/blueimp-gallery/gallery-video.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/blueimp-gallery/gallery.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-datepicker/bootstrap-datepicker.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-daterangepicker/bootstrap-daterangepicker.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-duallistbox/bootstrap-duallistbox.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-markdown/bootstrap-markdown.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-material-datetimepicker/bootstrap-material-datetimepicker.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-maxlength/bootstrap-maxlength.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-multiselect/bootstrap-multiselect.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-select/bootstrap-select.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-slider/bootstrap-slider.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-sortable/bootstrap-sortable.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-sweetalert/bootstrap-sweetalert.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/bootstrap-table.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/auto-refresh/auto-refresh.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/click-edit-row/click-edit-row.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/filter-control/filter-control.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/group-by-v2/group-by-v2.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/group-by/group-by.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/multiple-selection-row/multiple-selection-row.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/reorder-rows/reorder-rows.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/sticky-header/sticky-header.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-table/extensions/tree-column/tree-column.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-tagsinput/bootstrap-tagsinput.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/bootstrap-tour/bootstrap-tour.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/c3/c3.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/chartist/chartist.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/cropper/cropper.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/datatables/datatables.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/dragula/dragula.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/dropzone/dropzone.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/flot/flot.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/flow-js/flow.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/fullcalendar/fullcalendar.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/growl/growl.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/jstree/themes/default-dark/style.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/jstree/themes/default/style.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/ladda/ladda.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/minicolors/minicolors.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/morris/morris.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/nestable/nestable.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/nouislider/nouislider.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/photoswipe/photoswipe.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/plyr/plyr.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/quill/editor.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/quill/typography.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/select2/select2.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/smartwizard/smartwizard.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/spinkit/spinkit.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/swiper/swiper.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/timepicker/timepicker.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/toastr/toastr.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/typeahead-js/typeahead.scss");
|
||||
__webpack_require__("./resources/assets/vendor/libs/vegas/vegas.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/account.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/authentication.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/chat.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/clients.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/contacts.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/file-manager.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/messages.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/products.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/projects.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/search.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/tasks.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/tickets.scss");
|
||||
__webpack_require__("./resources/assets/vendor/sass/pages/users.scss");
|
||||
module.exports = __webpack_require__("./resources/assets/sass/application.scss");
|
||||
|
||||
|
||||
/***/ })
|
||||
|
||||
/******/ });
|
||||
1
public/js/cookieconsent.min.js
vendored
Executable file
1
public/js/cookieconsent.min.js
vendored
Executable file
File diff suppressed because one or more lines are too long
218
public/js/custom.js
Normal file
218
public/js/custom.js
Normal file
|
|
@ -0,0 +1,218 @@
|
|||
$(function () {
|
||||
// $('.selectpicker').selectpicker();
|
||||
// $('[data-toggle="tooltip"]').tooltip();
|
||||
});
|
||||
|
||||
|
||||
function update_modal_data_load(e, $ele) {
|
||||
var ele = $ele,
|
||||
url = ele.data('url'),
|
||||
data = {data:ele.data('data'), target:ele.data('target')} ,
|
||||
contentType = 'application/x-www-form-urlencoded; charset=UTF-8';
|
||||
|
||||
console.log(data);
|
||||
console.log(url);
|
||||
$.ajax({
|
||||
url: url,
|
||||
data: data,
|
||||
type: "POST",
|
||||
dataType: "json",
|
||||
cache: false,
|
||||
contentType: contentType,
|
||||
encode: true,
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||
},
|
||||
success: function(data) {
|
||||
// do what ever you want here. add content to <div> if it was not 1 .
|
||||
$(data.target).find('.modal-content').html(data.response);
|
||||
// $('.selectpicker').selectpicker(["refresh"]);
|
||||
// $('.input-daterange').datepicker({toggleActive: true,format: 'dd.mm.yyyy'});
|
||||
$(data.target).modal('show');
|
||||
},
|
||||
error: function(xhr, status, errorThrown) {
|
||||
console.log(xhr);
|
||||
console.log(xhr.responseText);
|
||||
console.log(status);
|
||||
console.log("Sorry, there was a problem!");
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
||||
jQuery(document).ready(function() {
|
||||
$(".update_modal_data_load").on('click', function (e) {
|
||||
e.preventDefault();
|
||||
update_modal_data_load(e, $(this));
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
/*
|
||||
$(function() {
|
||||
$('.select2-main').each(function() {
|
||||
$(this)
|
||||
.wrap('<div class="position-relative"></div>')
|
||||
.select2({
|
||||
placeholder: 'Bitte wählen',
|
||||
dropdownParent: $(this).parent(),
|
||||
});
|
||||
})
|
||||
$('.select2-sub').each(function() {
|
||||
$(this)
|
||||
.wrap('<div class="position-relative"></div>')
|
||||
.select2({
|
||||
placeholder: 'Bitte wählen',
|
||||
dropdownParent: $(this).parent(),
|
||||
closeOnSelect: false
|
||||
});
|
||||
})
|
||||
});
|
||||
*/
|
||||
/*
|
||||
jQuery(document).ready(function() {
|
||||
|
||||
$('.main-branch').on('change', function () {
|
||||
|
||||
target = $(this).data('target');
|
||||
if ($(this).is(':checked')) {
|
||||
$(target).stop().show('slow');
|
||||
} else {
|
||||
$(target).stop().hide('slow');
|
||||
$(target).find('.custom-control-input').prop('checked', false);
|
||||
}
|
||||
});
|
||||
|
||||
var $form = $('#lead-form-validation');
|
||||
if($form.find('#company_country_id').length){
|
||||
$form.find('#company_country_id').on('change', function(){
|
||||
$form.find('#company_pre_phone_id').val($(this).val());
|
||||
$form.find('#company_pre_phone_id').selectpicker('refresh');
|
||||
});
|
||||
}
|
||||
|
||||
if($form.find('#country_id').length){
|
||||
$form.find('#country_id').on('change', function(){
|
||||
$form.find('#pre_phone_id').val($(this).val());
|
||||
$form.find('#pre_phone_id').selectpicker('refresh');
|
||||
|
||||
$form.find('#pre_mobil_id').val($(this).val());
|
||||
$form.find('#pre_mobil_id').selectpicker('refresh');
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
});
|
||||
*/
|
||||
|
||||
/*
|
||||
function trigger_company($ele, $speed){
|
||||
if($ele.val() == 1){
|
||||
$('.show_company_holder').show($speed);
|
||||
$('.show_company_holder').find('#company_name').prop('required', true);
|
||||
$('.show_company_holder').find('#company_country_id').prop('required', true);
|
||||
|
||||
}else{
|
||||
$('.show_company_holder').hide($speed);
|
||||
$('.show_company_holder').find('#company_name').prop('required', false);
|
||||
$('.show_company_holder').find('#company_country_id').prop('required', false);
|
||||
}
|
||||
}
|
||||
|
||||
$( document ).ready(function() {
|
||||
|
||||
// With validation
|
||||
var $form = $('#lead-form-validation');
|
||||
$form.find('#company').on('change', function () {
|
||||
trigger_company($(this), 'slow');
|
||||
});
|
||||
|
||||
trigger_company($form.find('#company'), 0);
|
||||
|
||||
// Set up validator
|
||||
$form.validate({
|
||||
rules: {
|
||||
'email': {
|
||||
required: true,
|
||||
email: true,
|
||||
remote:
|
||||
{
|
||||
url: "{{ route('user_check_mail') }}",
|
||||
type: "post",
|
||||
data:
|
||||
{
|
||||
user_id: function()
|
||||
{
|
||||
return $('#lead-form-validation :input[name="user_id"]').val();
|
||||
},
|
||||
email: function()
|
||||
{
|
||||
return $('#lead-form-validation :input[name="email"]').val();
|
||||
}
|
||||
},
|
||||
encode: true,
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||
},
|
||||
}
|
||||
},
|
||||
'email-confirm': {
|
||||
required: true,
|
||||
equalTo: "#email"
|
||||
},
|
||||
'accepted_data_protection': {
|
||||
required: true
|
||||
},
|
||||
},
|
||||
errorPlacement: function errorPlacement(error, element) {
|
||||
$(element).parents('.form-group').append(
|
||||
error.addClass('invalid-feedback small d-block')
|
||||
)
|
||||
},
|
||||
highlight: function (element) {
|
||||
if ($(element).hasClass('selectpicker')) {
|
||||
$(element).parent().addClass('is-invalid');
|
||||
}
|
||||
$(element).addClass('is-invalid');
|
||||
},
|
||||
unhighlight: function (element) {
|
||||
$(element).removeClass('is-invalid');
|
||||
$(element).parents('.form-group').find('.is-invalid').removeClass('is-invalid');
|
||||
},
|
||||
messages : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
company_country_id : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
accepted_data_protection : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
salutation : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
company_name : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
last_name : {
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
equalTo : "{{__('Please enter the same value again.')}}",
|
||||
'email-confirm' : {
|
||||
equalTo : "{{__('Please enter the same value again.')}}",
|
||||
required: "{{__('This field is required.')}}",
|
||||
},
|
||||
email: {
|
||||
required : "{{__('This field is required.')}}",
|
||||
email: "{{ __('Please enter a valid email address.') }}",
|
||||
remote : "{{ __('This E-mail is already in use.') }}"
|
||||
},
|
||||
},
|
||||
onkeyup: false
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
*/
|
||||
4
public/js/jquery.min.js
vendored
Normal file
4
public/js/jquery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue