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

$(function() {
    $('#tree1').tree({
        closedIcon: $('<i class="fa fa-arrow-circle-right"></i>'),
        openedIcon: $('<i class="fa fa-arrow-circle-down"></i>')
    });
});