mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 00:09:06 +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.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);
|
||||
|
|
Loading…
Reference in a new issue