Initial Smartproc
This commit is contained in:
Vendored
+7
File diff suppressed because one or more lines are too long
Vendored
+2
File diff suppressed because one or more lines are too long
@@ -0,0 +1,13 @@
|
||||
$(function() {
|
||||
'use strict';
|
||||
|
||||
$('.form-control').on('input', function() {
|
||||
var $field = $(this).closest('.form-group');
|
||||
if (this.value) {
|
||||
$field.addClass('field--not-empty');
|
||||
} else {
|
||||
$field.removeClass('field--not-empty');
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
Vendored
+5
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user