|
Lines 127-134
function tagAdded() {
Link Here
|
| 127 |
} |
127 |
} |
| 128 |
|
128 |
|
| 129 |
$(document).ready(function () { |
129 |
$(document).ready(function () { |
| 130 |
$(".cb").click(function () { |
130 |
$('.cb').each((idx, element) => { |
| 131 |
enableCheckboxActions(); |
131 |
$(element).on('click', () => { |
|
|
132 |
enableCheckboxActions(); |
| 133 |
}); |
| 134 |
$(element).on('keydown', event => { |
| 135 |
if (event.key === 'Enter') { |
| 136 |
event.preventDefault(); |
| 137 |
$(element).trigger('click'); |
| 138 |
return false; |
| 139 |
} |
| 140 |
}); |
| 132 |
}); |
141 |
}); |
| 133 |
enableCheckboxActions(); |
142 |
enableCheckboxActions(); |
| 134 |
|
143 |
|
| 135 |
- |
|
|