nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / static / examples / drag_and_drop.js
1 $.mockjax({
2     url: '*',
3     response: function(options) {
4         this.responseText = ExampleData.example_data;
5     },
6     responseTime: 0
7 });
8
9 $(function() {
10     var $tree = $('#tree1');
11     $tree.tree({
12         dragAndDrop: true,
13         autoOpen: 0
14     });
15 });