JQuery Колибри-дерево вид не вызывается, как предполагалось
Я пытаюсь запустить jquery hummingbird-treeview, но в данный момент он не работает. Я следовал процедурам, упомянутым в их документе https://www.jqueryscript.net/other/Collapsible-Tree-View-Checkboxes-jQuery-hummingbird.html, однако он пока не работает.
HTML
<ul id="treeview">
<li> <i class="fa fa-plus"></i>
<label>
<input id="xnode-0" data-id="custom-0" type="checkbox" />
node-0 </label>
<ul>
<li> <i class="fa fa-plus"></i>
<label>
<input id="xnode-0-1" data-id="custom-0-1" type="checkbox" />
node-0-1 </label>
<ul>
<li>
<label>
<input class="hummingbirdNoParent" id="xnode-0-1-1" data-id="custom-0-1-1" type="checkbox" />
node-0-1-1 </label>
</li>
<li>
<label>
<input class="hummingbirdNoParent" id="xnode-0-1-2" data-id="custom-0-1-2" type="checkbox" />
node-0-1-2 </label>
</li>
</ul>
</li>
<li> <i class="fa fa-plus"></i>
<label>
<input id="xnode-0-2" data-id="custom-0-2" type="checkbox" />
node-0-2 </label>
<ul>
<li>
<label>
<input class="hummingbirdNoParent" id="xnode-0-2-1" data-id="custom-0-2-1" type="checkbox" />
node-0-2-1 </label>
</li>
<li>
<label>
<input class="hummingbirdNoParent" id="xnode-0-2-2" data-id="custom-0-2-2" type="checkbox" />
node-0-2-2 </label>
</li>
</ul>
</li>
</ul>
</li>
</ul>
Treeview инициализируется
$(function({
$("#treeview").hummingbird();
}))
Тем не менее, это еще не работает. Codepen ссылки