summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/static/examples/load_json_data_from_server.js
blob: 487e694fd03c690aceb65ae847a2014d4eda053d (plain)
1
2
3
4
5
6
7
8
9
10
11
$.mockjax({
    url: '*',
    response: function(options) {
        this.responseText = ExampleData.example_data;
    },
    responseTime: 0
});

$(function() {
    $('#tree1').tree();
});