Skip to content

Commit fd97cf8

Browse files
committed
Using more cleaner approach to automatically apply validation to input elements.
1 parent e673aa1 commit fd97cf8

8 files changed

+53
-111
lines changed

Gruntfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ module.exports = function (grunt) {
1111
dist: 'dist'
1212
};
1313

14-
var intercetorFile = '<%=yeoman.src %>/app.interceptor.js';
1514
var tooltipFile = '<%=yeoman.src %>/services/tooltip.message.service.js';
1615
var simpleFile = '<%=yeoman.src %>/services/simple.message.service.js';
1716

@@ -28,10 +27,8 @@ module.exports = function (grunt) {
2827
'<%=yeoman.src %>/app.js',
2928
'<%=yeoman.src %>/**/*.js',
3029
('!' + simpleFile),
31-
('!' + tooltipFile),
32-
('!' + intercetorFile)
30+
('!' + tooltipFile)
3331
],
34-
'<%=yeoman.dist %>/bootstrap-angular-validation-interceptor.min.js': intercetorFile,
3532
'<%=yeoman.dist %>/bootstrap-angular-validation-simple.min.js': simpleFile,
3633
'<%=yeoman.dist %>/bootstrap-angular-validation-tooltip.min.js': tooltipFile
3734
}

dist/bootstrap-angular-validation-all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bootstrap-angular-validation-core.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bootstrap-angular-validation-interceptor.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/app.interceptor.js

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)