Skip to content

Commit 7b042d2

Browse files
committed
bump version 1.1.2
1 parent 8f7bc2c commit 7b042d2

File tree

5 files changed

+10
-19
lines changed

5 files changed

+10
-19
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.idea
2-
node_modules
2+
node_modules
3+
npm-debug.log

Gruntfile.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,6 @@ module.exports = function (grunt) {
4242
}
4343
}
4444
},
45-
connect: {
46-
server: {
47-
options: {
48-
protocol: 'http',
49-
hostname: '*',
50-
port: 8080,
51-
base: ROOT_PATH
52-
}
53-
}
54-
},
5545
browserSync: {
5646
dev: {
5747
bsFiles: {

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
angular-validation 1.1.1
1+
angular-validation 1.1.2
22
=========================
33
[![NPM version](https://badge.fury.io/js/angular-validation.svg)](http://badge.fury.io/js/angular-validation)
44
[![Build Status](https://travis-ci.org/huei90/angular-validation.png?branch=master)](https://travis-ci.org/huei90/angular-validation)
@@ -336,7 +336,7 @@ see [release](https://github.com/huei90/angular-validation/releases)
336336

337337
Q & A
338338
=====
339-
Can I validate the form when init ? [#10](https://github.com/huei90/angular-validation/issues/10)
339+
###Can I validate the form when init ? [#10](https://github.com/huei90/angular-validation/issues/10)###
340340

341341
```html
342342
<form name="Form">
@@ -346,11 +346,11 @@ Can I validate the form when init ? [#10](https://github.com/huei90/angular-vali
346346
```
347347
```javascript
348348
$timeout(function () { // call $timeout to make sure the Form Constructor is generated
349-
$validationProvider.validate($scope.Form); // $scope.Form is html form name `Form Constructor`
349+
$validationProvider.validate($scope.Form); // $scope.Form is html form name `Form Constructor`
350350
});
351351
```
352352

353-
What's the differentiate between validator-method `submit` and `submit-only`[#4](https://github.com/huei90/angular-validation/issues/4)
353+
###What's the differentiate between validator-method `submit` and `submit-only`[#4](https://github.com/huei90/angular-validation/issues/4)###
354354

355-
`submit` : when user click submit, then start watching using `watch` to validate
356-
`submit-only` : when user click `submit`, doesn't validate through `watch` until `submit` button is clicked.
355+
`submit` : when user click submit, then start watching using `watch` to validate<br/>
356+
`submit-only` : when user click `submit`, doesn't validate through `watch` until `submit` button is clicked.

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",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"homepage": "https://github.com/huei90/angular-validation",
55
"authors": [
66
"huei90"

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",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Angular Validation",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)