mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-16 15:33:02 +01:00
LSformElement::mail: fix duplicated email JS button
This commit is contained in:
parent
639f46d8a4
commit
c81e2d0ee3
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ var LSformElement_mail = new Class({
|
||||||
el = document;
|
el = document;
|
||||||
}
|
}
|
||||||
el.getElements('input.LSformElement_mail').each(function(input) {
|
el.getElements('input.LSformElement_mail').each(function(input) {
|
||||||
if (!input.hasClass('LSformElement_mail_disableMailSending')) {
|
if (!input.hasClass('LSformElement_mail_disableMailSending') && input.get('type') != 'hidden') {
|
||||||
this.addBtnAfter.bind(this)(input);
|
this.addBtnAfter.bind(this)(input);
|
||||||
}
|
}
|
||||||
}, this);
|
}, this);
|
||||||
|
|
Loading…
Reference in a new issue