├── .gitattributes ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── bower.json ├── example ├── css │ ├── css.less │ └── style.less ├── index-local.html ├── index.html ├── index.js ├── lib │ ├── angular-highlightjs │ │ ├── angular-highlightjs.js │ │ └── angular-highlightjs.min.js │ ├── angular-ui │ │ ├── ui-bootstrap │ │ │ └── 0.9.0 │ │ │ │ ├── ui-bootstrap-tpls.js │ │ │ │ └── ui-bootstrap.js │ │ └── ui-router │ │ │ └── 0.2.10 │ │ │ └── angular-ui-router.js │ ├── angular │ │ ├── 1.0.8 │ │ │ └── angular.js │ │ ├── 1.2.0 │ │ │ └── angular.js │ │ └── 1.4.8 │ │ │ └── angular.js │ ├── bootstrap │ │ └── 3.0.0 │ │ │ ├── .editorconfig │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── css │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── highlight │ │ └── 8.0 │ │ │ ├── highlight.pack.js │ │ │ └── styles │ │ │ ├── brown_papersq.png │ │ │ ├── default.css │ │ │ ├── pojoaque.jpg │ │ │ └── school_book.png │ └── jquery │ │ └── 1.11.0 │ │ └── jquery.js ├── repeat.html └── validate.form.html ├── gulpfile.js ├── package.json ├── src ├── directive.js ├── style.css ├── style.less └── w5cValidator.js ├── style.css ├── style.less ├── w5cValidator.js └── w5cValidator.min.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | example 3 | bower.json 4 | Gruntfile.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/bower.json -------------------------------------------------------------------------------- /example/css/css.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/css/css.less -------------------------------------------------------------------------------- /example/css/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/css/style.less -------------------------------------------------------------------------------- /example/index-local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/index-local.html -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/index.js -------------------------------------------------------------------------------- /example/lib/angular-highlightjs/angular-highlightjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular-highlightjs/angular-highlightjs.js -------------------------------------------------------------------------------- /example/lib/angular-highlightjs/angular-highlightjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular-highlightjs/angular-highlightjs.min.js -------------------------------------------------------------------------------- /example/lib/angular-ui/ui-bootstrap/0.9.0/ui-bootstrap-tpls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular-ui/ui-bootstrap/0.9.0/ui-bootstrap-tpls.js -------------------------------------------------------------------------------- /example/lib/angular-ui/ui-bootstrap/0.9.0/ui-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular-ui/ui-bootstrap/0.9.0/ui-bootstrap.js -------------------------------------------------------------------------------- /example/lib/angular-ui/ui-router/0.2.10/angular-ui-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular-ui/ui-router/0.2.10/angular-ui-router.js -------------------------------------------------------------------------------- /example/lib/angular/1.0.8/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular/1.0.8/angular.js -------------------------------------------------------------------------------- /example/lib/angular/1.2.0/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular/1.2.0/angular.js -------------------------------------------------------------------------------- /example/lib/angular/1.4.8/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/angular/1.4.8/angular.js -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/.editorconfig -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/.gitignore -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/.travis.yml -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/alerts.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/badges.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/bootstrap.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/breadcrumbs.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/button-groups.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/buttons.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/carousel.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/code.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/component-animations.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/dropdowns.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/forms.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/glyphicons.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/grid.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/input-groups.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/jumbotron.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/labels.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/list-group.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/media.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/mixins.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/modals.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/navbar.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/navs.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/normalize.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/pager.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/pagination.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/panels.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/popovers.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/progress-bars.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/responsive-utilities.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/scaffolding.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/tables.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/theme.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/thumbnails.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/tooltip.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/type.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/utilities.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/variables.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/css/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/css/wells.less -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/js/bootstrap.js -------------------------------------------------------------------------------- /example/lib/bootstrap/3.0.0/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/bootstrap/3.0.0/js/bootstrap.min.js -------------------------------------------------------------------------------- /example/lib/highlight/8.0/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/highlight/8.0/highlight.pack.js -------------------------------------------------------------------------------- /example/lib/highlight/8.0/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/highlight/8.0/styles/brown_papersq.png -------------------------------------------------------------------------------- /example/lib/highlight/8.0/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/highlight/8.0/styles/default.css -------------------------------------------------------------------------------- /example/lib/highlight/8.0/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/highlight/8.0/styles/pojoaque.jpg -------------------------------------------------------------------------------- /example/lib/highlight/8.0/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/highlight/8.0/styles/school_book.png -------------------------------------------------------------------------------- /example/lib/jquery/1.11.0/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/lib/jquery/1.11.0/jquery.js -------------------------------------------------------------------------------- /example/repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/repeat.html -------------------------------------------------------------------------------- /example/validate.form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/example/validate.form.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/package.json -------------------------------------------------------------------------------- /src/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/src/directive.js -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/src/style.css -------------------------------------------------------------------------------- /src/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/src/style.less -------------------------------------------------------------------------------- /src/w5cValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/src/w5cValidator.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/style.css -------------------------------------------------------------------------------- /style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/style.less -------------------------------------------------------------------------------- /w5cValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/w5cValidator.js -------------------------------------------------------------------------------- /w5cValidator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/why520crazy/angular-w5c-validator/HEAD/w5cValidator.min.js --------------------------------------------------------------------------------