ajout fichiers manquant
This commit is contained in:
63
venv/Lib/site-packages/jazzmin/static/jazzmin/js/main.js
Normal file
63
venv/Lib/site-packages/jazzmin/static/jazzmin/js/main.js
Normal file
@@ -0,0 +1,63 @@
|
||||
(function($) {
|
||||
'use strict';
|
||||
|
||||
function setCookie(key, value) {
|
||||
const expires = new Date();
|
||||
expires.setTime(expires.getTime() + (value * 24 * 60 * 60 * 1000));
|
||||
document.cookie = key + '=' + value + ';expires=' + expires.toUTCString() + '; SameSite=Strict;path=/';
|
||||
}
|
||||
|
||||
function getCookie(key) {
|
||||
const keyValue = document.cookie.match('(^|;) ?' + key + '=([^;]*)(;|$)');
|
||||
return keyValue ? keyValue[2] : null;
|
||||
}
|
||||
|
||||
function handleMenu() {
|
||||
$('[data-widget=pushmenu]').bind('click', function () {
|
||||
const menuClosed = getCookie('jazzy_menu') === 'closed';
|
||||
if (!menuClosed) {
|
||||
setCookie('jazzy_menu', 'closed');
|
||||
} else {
|
||||
setCookie('jazzy_menu', 'open');
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
function setActiveLinks() {
|
||||
/*
|
||||
Set the currently active menu item based on the current url, or failing that, find the parent
|
||||
item from the breadcrumbs
|
||||
*/
|
||||
const url = window.location.pathname;
|
||||
const $breadcrumb = $('.breadcrumb a').last();
|
||||
const $link = $('a[href="' + url + '"]');
|
||||
const $parent_link = $('a[href="' + $breadcrumb.attr('href') + '"]');
|
||||
|
||||
if ($link.length) {
|
||||
$link.addClass('active');
|
||||
} else if ($parent_link.length) {
|
||||
$parent_link.addClass('active');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
// Set active status on links
|
||||
setActiveLinks()
|
||||
|
||||
// When we use the menu, store its state in a cookie to preserve it
|
||||
handleMenu();
|
||||
|
||||
// Add minimal changelist styling to templates that we have been unable to override (e.g MPTT)
|
||||
// Needs to be here and not in change_list.js because this is the only JS we are guaranteed to run
|
||||
// (as its included in base.html)
|
||||
const $changeListTable = $('#changelist .results table');
|
||||
if ($changeListTable.length && !$changeListTable.hasClass('table table-striped')) {
|
||||
$changeListTable.addClass('table table-striped');
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
})(jQuery);
|
Reference in New Issue
Block a user