Ajout d'une extension

This commit is contained in:
Gauvain Boiché
2020-04-04 18:27:27 +02:00
parent c3ed8cc1c1
commit 3a964fe237
387 changed files with 58921 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
jQuery(function($) {
$('.aps-names-toggle').on('click', function() {
$(this).parents('fieldset').toggleClass('aps-points-full');
let altText = $(this).data('text');
$(this).data('text', $(this).text()).text(altText);
});
$('#aps_points_icon').iconpicker({
collision: true,
placement: 'bottomRight',
component: '#aps_points_icon + i',
});
});