Skip to content

Commit

Permalink
Merge pull request #25 from peckadesign/24-oprava-vkladani-zprav-v-IE
Browse files Browse the repository at this point in the history
 #24 Nezobrazení validační zprávy v IE11
  • Loading branch information
zipper authored Jan 21, 2020
2 parents 799d9be + f76e3fa commit 72c6c38
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pd-forms",
"title": "pdForms",
"description": "Customization of netteForms for use in PeckaDesign.",
"version": "3.0.2",
"version": "3.0.3",
"author": "PeckaDesign, s.r.o <support@peckadesign.cz>",
"contributors": [
"Radek Šerý <radek.sery@peckadesign.cz>",
Expand Down
8 changes: 4 additions & 4 deletions src/assets/pdForms.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @name pdForms
* @author Radek Šerý <radek.sery@peckadesign.cz>
* @version 3.0.2
* @version 3.0.3
*
* Features:
* - live validation
Expand Down Expand Up @@ -45,7 +45,7 @@

var pdForms = window.pdForms || {};

pdForms.version = '3.0.2';
pdForms.version = '3.0.3';


/**
Expand Down Expand Up @@ -454,8 +454,8 @@
}

placeholder.elem.getAttribute('data-pdforms-messages-prepend') ?
placeholder.elem.prepend(msg) :
placeholder.elem.append(msg);
placeholder.elem.insertAdjacentElement('afterBegin', msg) :
placeholder.elem.insertAdjacentElement('beforeEnd', msg);
}
};

Expand Down

0 comments on commit 72c6c38

Please sign in to comment.