Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
var DocumentBatch = function ($) {
|
||||
"use strict";
|
||||
|
||||
var me = {
|
||||
init: function () {
|
||||
$('#checkall').on('change',function(){
|
||||
$('#documentbatches_orders').find('input.select').prop('checked', $(this).prop('checked'));
|
||||
});
|
||||
$('#checkallinwork').on('change',function(){
|
||||
$('#documentbatches_inwork').find('input.select').prop('checked', $(this).prop('checked'));
|
||||
});
|
||||
}
|
||||
};
|
||||
return {
|
||||
init: me.init
|
||||
}
|
||||
}(jQuery);
|
||||
|
||||
$(document).ready(function () {
|
||||
DocumentBatch.init();
|
||||
});
|
||||
Reference in New Issue
Block a user