Skip to content
Snippets Groups Projects
Commit 4a1a5a4a authored by Silence's avatar Silence
Browse files

number input

parent 574bd5f7
No related merge requests found
......@@ -155,7 +155,13 @@ $(function() {
thisObj.removeAttr('disabled');
}
);
});
})
.keydown(function(event) {
KeyDownOnlyNumber(event);
});
;
// Изменение практических часов
$('input.InputPracticeCount').focusout(function()
......@@ -185,6 +191,9 @@ $(function() {
thisObj.removeAttr('disabled');
}
);
});
})
.keydown(function(event) {
KeyDownOnlyNumber(event);
});
});
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment