Skip to content
Snippets Groups Projects
Commit c2da4a93 authored by PavelBegunkov's avatar PavelBegunkov
Browse files

fix

parent 0a37dd58
Branches
Tags
No related merge requests found
var $ = jQuery;
$(function() {
$("div.moduleList").on('keydown', 'input.inputName', function(event) {
event.preventDefault();
});
$("div.moduleList").on('click focus', 'input.inputName', function(event) {
this.blur();
event.preventDefault();
});
$("div.moduleList").on('keydown', 'input.inputCredit', function(event) {
event.preventDefault();
});
$("div.moduleList").on('click focus', 'input.inputCredit', function(event) {
this.blur();
event.preventDefault();
});
});
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