Skip to content
Snippets Groups Projects
Commit f8db8a66 authored by colemanw's avatar colemanw
Browse files

Js cleanup

parent d615ccf5
No related branches found
No related tags found
No related merge requests found
......@@ -72,19 +72,19 @@ cj(function($) {
buildBatchSelector();
$("#batch_update").removeAttr('disabled');
$('#financial-search-form :input').change(function() {
if (!$(this).hasClass('crm-inline-error')) {
batchSelector.fnDraw();
}
});
$('#financial-search-form :input').keypress(function(event) {
if (event.which == 13) {
event.preventDefault();
$(this).change();
return false;
}
});
$('#financial-search-form :input')
.change(function() {
if (!$(this).hasClass('crm-inline-error')) {
batchSelector.fnDraw();
}
})
.keypress(function(event) {
if (event.which == 13) {
event.preventDefault();
$(this).change();
return false;
}
});
var checkedRows = [];
function buildBatchSelector() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment