Initial Smartproc

This commit is contained in:
Titan Hadiyan
2023-05-27 07:03:08 +07:00
parent b3feeb7809
commit fc7a97585a
90 changed files with 89395 additions and 0 deletions
+7
View File
File diff suppressed because one or more lines are too long
+2
View File
File diff suppressed because one or more lines are too long
+13
View 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
View File
File diff suppressed because one or more lines are too long