Remove ✓ ✗

This commit is contained in:
Amauri CHAMPEAUX 2021-03-25 19:08:54 +01:00
parent cb72b822e4
commit f8cbdcb2ce
1 changed files with 3 additions and 3 deletions

View File

@ -332,7 +332,7 @@ var tarteaucitron = {
if (tarteaucitron.parameters.mandatory == true) { if (tarteaucitron.parameters.mandatory == true) {
html += '<li id="tarteaucitronServicesTitle_mandatory">'; html += '<li id="tarteaucitronServicesTitle_mandatory">';
html += '<div class="tarteaucitronTitle">'; html += '<div class="tarteaucitronTitle">';
html += ' <button type="button" tabindex="-1">&nbsp; ' + tarteaucitron.lang.mandatoryTitle + '</button>'; html += ' <button type="button" tabindex="-1"><span class="tarteaucitronPlus"></span> ' + tarteaucitron.lang.mandatoryTitle + '</button>';
html += '</div>'; html += '</div>';
html += '<ul id="tarteaucitronServices_mandatory">'; html += '<ul id="tarteaucitronServices_mandatory">';
html += '<li class="tarteaucitronLine">'; html += '<li class="tarteaucitronLine">';
@ -606,10 +606,10 @@ var tarteaucitron = {
html += ' </div>'; html += ' </div>';
html += ' <div class="tarteaucitronAsk" id="tarteaucitron-group-'+cat+'">'; html += ' <div class="tarteaucitronAsk" id="tarteaucitron-group-'+cat+'">';
html += ' <button type="button" class="tarteaucitronAllow" id="tarteaucitron-accept-group-'+cat+'">'; html += ' <button type="button" class="tarteaucitronAllow" id="tarteaucitron-accept-group-'+cat+'">';
html += ' &#10003; ' + tarteaucitron.lang.allow; html += ' <span class="tarteaucitronCheck"></span> ' + tarteaucitron.lang.allow;
html += ' </button> '; html += ' </button> ';
html += ' <button type="button" class="tarteaucitronDeny" id="tarteaucitron-reject-group-'+cat+'">'; html += ' <button type="button" class="tarteaucitronDeny" id="tarteaucitron-reject-group-'+cat+'">';
html += ' &#10007; ' + tarteaucitron.lang.deny; html += ' <span class="tarteaucitronCross"></span> ' + tarteaucitron.lang.deny;
html += ' </button>'; html += ' </button>';
html += ' </div>'; html += ' </div>';
html += '</li>'; html += '</li>';