Initial Smartproc
This commit is contained in:
7
public/js/bootstrap.min.js
vendored
Normal file
7
public/js/bootstrap.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
2
public/js/jquery-3.3.1.min.js
vendored
Normal file
2
public/js/jquery-3.3.1.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
13
public/js/main.js
Normal file
13
public/js/main.js
Normal file
@ -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');
|
||||
}
|
||||
});
|
||||
|
||||
});
|
5
public/js/popper.min.js
vendored
Normal file
5
public/js/popper.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user