forked from filipg/gonito
13 lines
388 B
Plaintext
13 lines
388 B
Plaintext
|
var input = document.querySelector('input[data-role=tagsinput]'),
|
||
|
tagify = new Tagify( input, {
|
||
|
whitelist: #{tagsAvailableAsJSON},
|
||
|
autocomplete: true,
|
||
|
enforeWhitelist: true});
|
||
|
input.style.display = 'none';
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
$("table").DataTable({
|
||
|
'pageLength': 50,
|
||
|
'order': [[1, 'desc']]});
|
||
|
} );
|