Skip to content

Commit 86779ca

Browse files
committed
rename
1 parent c275196 commit 86779ca

8 files changed

Lines changed: 96 additions & 95 deletions

File tree

CHANGELOG.md

Lines changed: 72 additions & 70 deletions
Large diffs are not rendered by default.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CONTRIBUTING
33

44
**Clone the repo to your computer**
55
```sh
6-
git clone https://github.com/huei90/angular-validation.git
6+
git clone https://github.com/hueitan/angular-validation.git
77
```
88

99
**Install Grunt and Download dependencies**

Q&A.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Yes, you can do it by using `validation-group`
2222
<span id="checkBlur"></span>
2323
```
2424

25-
### Can I validate the form when init ? [#10](https://github.com/huei90/angular-validation/issues/10)###
25+
### Can I validate the form when init ? [#10](https://github.com/hueitan/angular-validation/issues/10)###
2626

2727
```html
2828
<form name="Form">
@@ -36,24 +36,24 @@ $timeout(function () { // call $timeout to make sure the Form Constructor is gen
3636
});
3737
```
3838

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

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

44-
### Use checkValid() manually [#19](https://github.com/huei90/angular-validation/issues/19)###
44+
### Use checkValid() manually [#19](https://github.com/hueitan/angular-validation/issues/19)###
4545

4646
Before using `checkValid()`, you have to execute `submit` first to get the latest result.
4747

48-
### How do we do tooltips for error messages upon focusing? [#68](https://github.com/huei90/angular-validation/issues/68#issuecomment-86445467)
48+
### How do we do tooltips for error messages upon focusing? [#68](https://github.com/hueitan/angular-validation/issues/68#issuecomment-86445467)
4949

5050
Using `validCallback` and `invalidCallback` to implement
5151

5252
### Can this works correctly with AngularUI, ui-select, others ... ?###
5353

5454
Yes, `angular-validation` works perfectly with other directive. (isolation scope). Find out more from the demo page.
5555

56-
### Working with `ng-submit` and submitting with enter, not click [#247](https://github.com/huei90/angular-validation/issues/247)###
56+
### Working with `ng-submit` and submitting with enter, not click [#247](https://github.com/hueitan/angular-validation/issues/247)###
5757

5858
As per plnkr - https://plnkr.co/edit/nwTEuxuTMmpEc4hrFwGp?p=preview
5959

@@ -66,7 +66,7 @@ Add checkValid and submit into both ng-click and ng-submit
6666
</form>
6767
```
6868

69-
### Can I validate $modelValue instead of a $viewValue? [#272](https://github.com/huei90/angular-validation/pull/272)###
69+
### Can I validate $modelValue instead of a $viewValue? [#272](https://github.com/hueitan/angular-validation/pull/272)###
7070

7171
Yes, adding `use-view-value="false"` attribute forces to use $modelValue instead of a $viewValue for evaluation when form is submitted. By default $viewValue is used. This need raises from a need of localized number inputs, which have to be stored in a $viewValue as a string (e.g. "2 000,0"), however in a $modelValue they are stored as a properly formatted number (2000). This can be done e.g. by using a custom directive with properly specified $formatters and $parsers.
7272

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ angular-validation 1.4.4
55
[![Code Climate](https://codeclimate.com/github/hueitan/angular-validation/badges/gpa.svg)](https://codeclimate.com/github/hueitan/angular-validation)
66
[![Coverage Status](https://coveralls.io/repos/hueitan/angular-validation/badge.svg?branch=master&service=github)](https://coveralls.io/github/hueitan/angular-validation?branch=master)
77
[![devDependency Status](https://david-dm.org/hueitan/angular-validation/dev-status.png)](https://david-dm.org/hueitan/angular-validation#info=devDependencies)
8-
[![Gitter chat](https://badges.gitter.im/huei90/angular-validation.png)](https://gitter.im/huei90/angular-validation)
8+
[![Gitter chat](https://badges.gitter.im/hueitan/angular-validation.png)](https://gitter.im/hueitan/angular-validation)
99

1010
Client-side Validation should be simple and clean.
1111
<br/>Don't let Client-side Validation dirty your controller.

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "angular-validation",
33
"version": "1.4.4",
4-
"homepage": "https://github.com/huei90/angular-validation",
4+
"homepage": "https://github.com/hueitan/angular-validation",
55
"authors": [
6-
"huei90"
6+
"hueitan"
77
],
88
"description": "Client-side Validation for AngularJS",
99
"main": "dist/angular-validation.js",

index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<meta name="keywords" content="angular","angularjs","validation","angular validation","validator","client-side" />
2525

2626
<meta property="og:title" content="angular-validation" />
27-
<meta property="og:url" content="http://huei90.github.io/angular-validation/" />
27+
<meta property="og:url" content="http://hueitan.github.io/angular-validation/" />
2828
<meta property="og:description" content="Client-side Validation for AngularJS" />
2929
<meta property="og:image" content="//avatars0.githubusercontent.com/u/2560096?v=3&s=460" />
3030

@@ -57,8 +57,8 @@
5757
<li><a href="#getting_started">Getting started</a></li>
5858
<li><a href="#style_guide">Style guide</a></li>
5959
<li><a href="#examples">Examples</a></li>
60-
<li><a href="https://github.com/huei90/angular-validation/blob/master/API.md" target="_blank">API</a></li>
61-
<li><a href="https://github.com/huei90/angular-validation/issues" target="_blank">Report an issue</a></li>
60+
<li><a href="https://github.com/hueitan/angular-validation/blob/master/API.md" target="_blank">API</a></li>
61+
<li><a href="https://github.com/hueitan/angular-validation/issues" target="_blank">Report an issue</a></li>
6262
</ul>
6363
</div>
6464
</div>
@@ -266,7 +266,7 @@ <h2>Examples</h2>
266266
<legend>Form (Additions validation)</legend>
267267
<div class="input-group m-b-20" style="width: 50%;">
268268
<input type="text" class="form-control" validator="huei" name="huei" ng-model="form4.huei" placeholder="It's must be 'Huei Tan'" message-id="huei">
269-
<span class="input-group-addon">With <a href="https://github.com/huei90/angular-validation#custom-function-huei" target="_blank">Function</a> </span>
269+
<span class="input-group-addon">With <a href="https://github.com/hueitan/angular-validation#custom-function-huei" target="_blank">Function</a> </span>
270270

271271
</div>
272272
<span id="huei"></span>
@@ -275,15 +275,15 @@ <h2>Examples</h2>
275275
<input type="text" class="form-control" validator="huei" name="noMsg" ng-model="form4.noMsg" no-validation-message="true" placeholder="It's must be 'Huei Tan'" message-id="noMsg">
276276
<span class="input-group-addon">
277277
<span ng-if="!Form4.noMsg.$valid">type: Huei Tan</span>
278-
<span ng-if="Form4.noMsg.$valid"><a href="https://github.com/huei90/angular-validation#no-validation-message" target="_blank">no-validation-message</a></span>
278+
<span ng-if="Form4.noMsg.$valid"><a href="https://github.com/hueitan/angular-validation#no-validation-message" target="_blank">no-validation-message</a></span>
279279
</span>
280280
</div>
281281

282282
<div class="input-group m-b-20" style="width: 50%;">
283283
<input type="text" class="form-control" validator="huei" name="canChange" huei-error-message="{{ form4.changeErrorMsg }}" ng-model="form4.canChange" placeholder="Type Wrong !!" message-id="canChange">
284284
<span class="input-group-addon">
285285
<span ng-if="!form4.show"><a href="javascript:void(0);" ng-click="form4.changeMsg();form4.show = true;">Change Error Msg</a></span>
286-
<span ng-if="form4.show">Type Again <a href="https://github.com/huei90/angular-validation/blob/master/demo/demo.js#L45" target="_blank">#</a></span>
286+
<span ng-if="form4.show">Type Again <a href="https://github.com/hueitan/angular-validation/blob/master/demo/demo.js#L45" target="_blank">#</a></span>
287287
</span>
288288
</div>
289289
<span id="canChange"></span>
@@ -445,7 +445,7 @@ <h2>Examples</h2>
445445
</div>
446446
</div>
447447

448-
<a href="https://github.com/huei90/angular-validation" target="_blank"><img src="demo/iconmonstr-github-10-icon-128.png" id="github-link" alt="Fork me on Github"/></a>
448+
<a href="https://github.com/hueitan/angular-validation" target="_blank"><img src="demo/iconmonstr-github-10-icon-128.png" id="github-link" alt="Fork me on Github"/></a>
449449
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js"></script>
450450
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script>
451451
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
@@ -462,7 +462,7 @@ <h2>Examples</h2>
462462

463463
<script>
464464
((window.gitter = {}).chat = {}).options = {
465-
room: 'huei90/angular-validation'
465+
room: 'hueitan/angular-validation'
466466
};
467467
</script>
468468
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>

package.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
var options = {
22
version: '1.4.4',
33
where: 'client',
4-
packageName: 'huei90:angular-validation'
4+
packageName: 'hueitan:angular-validation'
55
};
66

77
// meta data
88
Package.describe({
99
name: options.packageName,
1010
version: options.version,
1111
summary: 'Client-side Validation for AngularJS',
12-
git: 'https://github.com/huei90/angular-validation',
12+
git: 'https://github.com/hueitan/angular-validation',
1313
documentation: 'README.md'
1414
});
1515

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@
44
"description": "Client-side Validation for AngularJS",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/huei90/angular-validation"
7+
"url": "https://github.com/hueitan/angular-validation"
88
},
9-
"homepage": "http://huei90.github.io/angular-validation/",
9+
"homepage": "http://hueitan.github.io/angular-validation/",
1010
"scripts": {
1111
"test": "grunt karma",
1212
"build": "grunt build",
1313
"development": "grunt dev"
1414
},
1515
"author": {
1616
"name": "Huei Tan",
17-
"email": "huei90@gmail.com",
18-
"url": "https://github.com/huei90"
17+
"url": "https://github.com/hueitan"
1918
},
2019
"license": "MIT",
2120
"keywords": [
@@ -27,7 +26,7 @@
2726
"client-side"
2827
],
2928
"main": "./dist/angular-validation.js",
30-
"bugs": "https://github.com/huei90/angular-validation/issues",
29+
"bugs": "https://github.com/hueitan/angular-validation/issues",
3130
"devDependencies": {
3231
"babel-core": "^6.7.7",
3332
"babel-loader": "^6.2.4",

0 commit comments

Comments
 (0)