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

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