mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-26 12:08:47 +02:00
10 lines
281 B
Twig
10 lines
281 B
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
$(document).on('click', '#checkAllExtensions', function() {
|
|
let bChecked = this.checked;
|
|
$('.extension_check').each( function() { this.checked = bChecked });
|
|
});
|
|
|
|
|