Is fancytree compatible with jquery 1.10.1+ ?

Is fancytree compatible with jquery 1.10.1+ ?


Hello,

I tried using fancytree with jquery 1.11.0 - but the tree was not displayed.
It works for JQuery 1.9.1, JQuery UI 1.9.2.

How/Can I get fancytree to work with 1.11.0?

The source as input into JSFiddle is below:

HTML:
    <div id="tree"></div>
    <button id="btnRefresh">Refresh statuses</button>

Javascript:
    $(function () {
        $("#tree").fancytree({
            source: [
                { title: "Item 1", lazy: true },
                { title: "Item 2" }
            ]
        });
    });