Skip to content
This repository was archived by the owner on Jul 1, 2020. It is now read-only.

Commit 6293025

Browse files
committed
Fixed a small IE8 problem
1 parent f6c23f0 commit 6293025

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-validation-ghiscoding",
3-
"version": "1.3.36",
3+
"version": "1.3.37",
44
"author": "Ghislain B.",
55
"description": "Angular-Validation Directive and Service (ghiscoding)",
66
"main": [

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Angular-Validation change logs
22

3+
1.3.37 (2015-07-21) Fixed a small IE8 problem.
34
1.3.36 (2015-07-20) Enhancement #47 - New option to use the ControllerAs syntax. Also fixed issue #48.
45
1.3.35 (2015-07-15) Deprecated old implentation of `regex:...:regex` (though it still works) by a new and much better implementation of `pattern=` validator. Converted all the rules from string pattern to regex pattern (when possible) defined in `angular-validation.js`. Also fixed issue #45 on email check.
56
1.3.34 (2015-07-08) Merge pull request #44 - Adding support to brazilian portuguese language.

dist/angular-validation.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-validation-ghiscoding",
3-
"version": "1.3.36",
3+
"version": "1.3.37",
44
"author": "Ghislain B.",
55
"description": "Angular-Validation Directive and Service (ghiscoding)",
66
"main": "app.js",

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#Angular Validation (Directive / Service)
2-
`Version: 1.3.36`
2+
`Version: 1.3.37`
33
### Form validation after user inactivity of default 1sec. (customizable timeout)
44

55
Forms Validation with Angular made easy! Angular-Validation is an angular directive/service with locales (languages) with a very simple approach of defining your `validation=""` directly within your element to validate (input, textarea, etc) and...that's it!!! The directive/service will take care of the rest!
@@ -67,8 +67,8 @@ All the documentation has been moved to the Wiki section, see the [github wiki](
6767
**Wiki Contents**
6868
* [Angular-Validation Wiki](https://github.com/ghiscoding/angular-validation/wiki)
6969
* Installation
70+
* [HOWTO - Step by Step](https://github.com/ghiscoding/angular-validation/wiki/Include-it-in-your-Angular-Application)
7071
* [Bower/NuGet Packages](https://github.com/ghiscoding/angular-validation/wiki/Download-and-Install-it)
71-
* [Include it in your Angular Application project](https://github.com/ghiscoding/angular-validation/wiki/Include-it-in-your-Angular-Application)
7272
* [Locales (languages)](https://github.com/ghiscoding/angular-validation/wiki/Locales-(languages))
7373
* Code Samples
7474
* [Directive Examples](https://github.com/ghiscoding/angular-validation/wiki/Working-Directive-Examples)

src/validation-common.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,8 @@ angular
581581
message += ' ' + ((!!validator && !!validator.params) ? String.format(translation, validator.params) : translation);
582582
}
583583
addToValidationAndDisplayError(self, formElmObj, message, isFieldValid, showError);
584-
}).catch(function (data) {
584+
})
585+
["catch"](function (data) {
585586
// error caught:
586587
// alternate text might not need translation if the user sent his own custom message or is already translated
587588
// so just send it directly into the validation summary.

0 commit comments

Comments
 (0)