|
@ -26,21 +26,23 @@ |
|
|
if (autores_pre_cadastrados.indexOf(obj.value) !== -1) |
|
|
if (autores_pre_cadastrados.indexOf(obj.value) !== -1) |
|
|
return ; |
|
|
return ; |
|
|
|
|
|
|
|
|
$('<input/>') |
|
|
let input = $('<input/>') |
|
|
.attr('type', 'checkbox') |
|
|
.attr('type', 'checkbox') |
|
|
.attr('name','autor') |
|
|
.attr('name','autor') |
|
|
.attr('id', 'id_autor_'+idx) |
|
|
.attr('id', 'id_autor_'+idx) |
|
|
.attr('value', obj.value) |
|
|
.attr('value', obj.value) |
|
|
.appendTo( |
|
|
.appendTo( |
|
|
$('<label/>').text(obj.text) |
|
|
$('<label/>') |
|
|
.appendTo( |
|
|
.appendTo( |
|
|
$('<div class="checkbox">') |
|
|
$('<div class="checkbox">') |
|
|
.appendTo($("#div_id_autor .controls") |
|
|
.appendTo( |
|
|
|
|
|
$("#div_id_autor .controls") |
|
|
) |
|
|
) |
|
|
) |
|
|
) |
|
|
) |
|
|
) |
|
|
|
|
|
.after(obj.text) |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
$('[type=checkbox]').checkbox(); |
|
|
|
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
} |
|
|
} |
|
|