nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / static / examples / autoescape.js
1 $(function() {
2     var data = [
3         {
4             name: 'examples',
5             children: [
6                 { name: '<a href="example1.html">Example 1</a>' },
7                 { name: '<a href="example2.html">Example 2</a>' },
8                 '<a href="example3.html">Example 3</a>'
9             ]
10         }
11     ];
12
13     // set autoEscape to false
14     $('#tree1').tree({
15         data: data,
16         autoEscape: false,
17         autoOpen: true
18     });
19 });