WIP: Road to 1.0.0 #1

Draft
miguel456 wants to merge 123 commits from develop into master
4 changed files with 79 additions and 75 deletions
Showing only changes of commit 4594973a21 - Show all commits

BIN
..env.swp

Binary file not shown.

View File

@ -578,22 +578,6 @@ return [
], ],
], ],
], ],
[
'name' => 'BootstrapToggleButton',
'active' => true,
'files' => [
[
'type' => 'css',
'asset' => false,
'location' => 'https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css',
],
[
'type' => 'js',
'asset' => false,
'location' => 'https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js',
],
],
],
[ [
'name' => 'BootstrapMultiselectDropdown', 'name' => 'BootstrapMultiselectDropdown',
'active' => true, 'active' => true,
@ -626,6 +610,22 @@ return [
'location' => 'https://cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/css/bootstrap4-toggle.min.css' 'location' => 'https://cdn.jsdelivr.net/gh/gitbrent/bootstrap4-toggle@3.6.1/css/bootstrap4-toggle.min.css'
] ]
] ]
] ],
[
'name' => 'BootstrapToggleButton',
'active' => true,
'files' => [
[
'type' => 'css',
'asset' => false,
'location' => 'https://gitcdn.github.io/bootstrap-toggle/2.2.2/css/bootstrap-toggle.min.css',
],
[
'type' => 'js',
'asset' => false,
'location' => 'https://gitcdn.github.io/bootstrap-toggle/2.2.2/js/bootstrap-toggle.min.js',
],
],
],
], ],
]; ];

13
public/js/app.js vendored
View File

@ -77256,6 +77256,7 @@ __webpack_require__(/*! chart.js */ "./node_modules/chart.js/dist/Chart.js");
__webpack_require__(/*! ./bootstrap */ "./resources/js/bootstrap.js"); __webpack_require__(/*! ./bootstrap */ "./resources/js/bootstrap.js");
$(document).ready(function () {
flatpickr__WEBPACK_IMPORTED_MODULE_0___default()("#appointmentDateTime", { flatpickr__WEBPACK_IMPORTED_MODULE_0___default()("#appointmentDateTime", {
enableTime: true, enableTime: true,
dateFormat: "Y-m-d H:i", dateFormat: "Y-m-d H:i",
@ -77279,7 +77280,7 @@ $("#submitComment").on('click', function () {
$("#newComment").submit(); $("#newComment").submit();
}); });
$("#jointype").bootstrapToggle(); $("#jointype").bootstrapToggle();
$("#associatedVacancies").multiselect(); });
/***/ }), /***/ }),
@ -77375,7 +77376,7 @@ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
// broadcaster: 'pusher', // broadcaster: 'pusher',
// key: process.env.MIX_PUSHER_APP_KEY, // key: process.env.MIX_PUSHER_APP_KEY,
// cluster: process.env.MIX_PUSHER_APP_CLUSTER, // cluster: process.env.MIX_PUSHER_APP_CLUSTER,
// encrypted: true // forceTLS: true
// }); // });
/***/ }), /***/ }),
@ -77409,10 +77410,10 @@ window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
/*! no static exports found */ /*! no static exports found */
/***/ (function(module, exports, __webpack_require__) { /***/ (function(module, exports, __webpack_require__) {
__webpack_require__(/*! /home/miguel456/Desktop/Projects/staffmanager/resources/js/app.js */"./resources/js/app.js"); __webpack_require__(/*! /home/miguel456/Desktop/Projects/rbrecruiter/resources/js/app.js */"./resources/js/app.js");
__webpack_require__(/*! /home/miguel456/Desktop/Projects/staffmanager/resources/js/application_charts.js */"./resources/js/application_charts.js"); __webpack_require__(/*! /home/miguel456/Desktop/Projects/rbrecruiter/resources/js/application_charts.js */"./resources/js/application_charts.js");
__webpack_require__(/*! /home/miguel456/Desktop/Projects/staffmanager/resources/js/calendar.js */"./resources/js/calendar.js"); __webpack_require__(/*! /home/miguel456/Desktop/Projects/rbrecruiter/resources/js/calendar.js */"./resources/js/calendar.js");
module.exports = __webpack_require__(/*! /home/miguel456/Desktop/Projects/staffmanager/resources/sass/app.scss */"./resources/sass/app.scss"); module.exports = __webpack_require__(/*! /home/miguel456/Desktop/Projects/rbrecruiter/resources/sass/app.scss */"./resources/sass/app.scss");
/***/ }) /***/ })

3
resources/js/app.js vendored
View File

@ -10,6 +10,7 @@ require('./bootstrap');
import flatpickr from "flatpickr"; import flatpickr from "flatpickr";
$(document).ready(function () {
flatpickr("#appointmentDateTime", { flatpickr("#appointmentDateTime", {
enableTime: true, enableTime: true,
@ -46,3 +47,5 @@ $("#submitComment").on('click', function(){
$("#jointype").bootstrapToggle(); $("#jointype").bootstrapToggle();
});