nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / static / examples / icon_buttons.js
1 $.mockjax({
2     url: '*',
3     response: function(options) {
4         this.responseText = ExampleData.example_data;
5     },
6     responseTime: 0
7 });
8
9 $(function() {
10     $('#tree1').tree({
11         closedIcon: $('<i class="fa fa-arrow-circle-right"></i>'),
12         openedIcon: $('<i class="fa fa-arrow-circle-down"></i>')
13     });
14 });