leenooks/resources/themes/adminlte/views/layouts/partials/scripts.blade.php

90 lines
2.3 KiB
PHP
Raw Normal View History

2018-04-23 10:24:26 +00:00
<!-- REQUIRED JS SCRIPTS -->
<!-- JQuery and bootstrap are required by Laravel 5.7 in resources/js/bootstrap.js-->
2018-04-23 10:24:26 +00:00
<!-- Laravel App -->
2019-07-03 07:16:46 +00:00
<script src="{{ asset('/js/app.js') }}" type="text/javascript"></script>
<!-- AdminLTE -->
<script src="{{ asset('/js/adminlte.min.js') }}"></script>
2018-04-23 10:24:26 +00:00
2018-06-05 13:39:47 +00:00
<script type="text/javascript">
2019-03-28 00:16:50 +00:00
// Our CSRF token to each interaction
$.ajaxSetup({
headers: {
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
}
});
2019-03-28 00:16:50 +00:00
$.AdminLTESidebarTweak = {};
2020-03-11 01:41:36 +00:00
$.AdminLTESidebarTweak.Open = true;
2019-03-28 00:16:50 +00:00
$.AdminLTESidebarTweak.options = {
EnableRemember: true,
//Removes the transition after page reload.
NoTransitionAfterReload: false
};
// Work out our timezone.
const tz = Intl.DateTimeFormat().resolvedOptions().timeZone;
2020-03-11 01:41:36 +00:00
/**
* Open and close the sidebar
* @param state
* @param addclass
*/
function sidebaropenclose(state,addclass) {
// Dont do anything if the state hasnt changed.
if (state == $.AdminLTESidebarTweak.Open) {
return;
}
$.AdminLTESidebarTweak.Open = state;
if (addclass !== 'undefined')
$("body")
.addClass(state ? 'sidebar-open' : 'sidebar-collapse');
$(this).delay(500).queue(function() {
window.dispatchEvent(new Event('resize'));
$(this).dequeue();
});
}
2019-03-28 00:16:50 +00:00
$(function () {
"use strict";
2019-03-28 00:16:50 +00:00
$("body").on("collapsed.lte.pushmenu", function(){
if($.AdminLTESidebarTweak.options.EnableRemember) {
document.cookie = "toggleState=closed;path=/";
2020-03-11 01:41:36 +00:00
$("body").queue(sidebaropenclose(false));
2019-03-28 00:16:50 +00:00
}
});
$("body").on("shown.lte.pushmenu", function(){
2019-03-28 00:16:50 +00:00
if($.AdminLTESidebarTweak.options.EnableRemember){
document.cookie = "toggleState=opened;path=/";
2020-03-11 01:41:36 +00:00
$("body").queue(sidebaropenclose(true));
2019-03-28 00:16:50 +00:00
}
});
2019-03-28 00:16:50 +00:00
if($.AdminLTESidebarTweak.options.EnableRemember){
var re = new RegExp('toggleState' + "=([^;]+)");
var value = re.exec(document.cookie);
var toggleState = (value != null) ? unescape(value[1]) : null;
if(toggleState == 'closed'){
if($.AdminLTESidebarTweak.options.NoTransitionAfterReload){
$("body").addClass('sidebar-collapse hold-transition').delay(100).queue(function(){
$(this).removeClass('hold-transition');
});
}else{
2020-03-11 01:41:36 +00:00
$("body").queue(sidebaropenclose(false,true));
2019-03-28 00:16:50 +00:00
}
}
}
});
</script>
@if(file_exists('js/custom.js'))
<!-- Any Custom JS -->
<script src="{{ asset('js/custom.js') }}"></script>
@endif