nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _examples / 11_right-to-left.html
1 ---
2 title: Right-to-left support
3 layout: page
4 js: examples/right-to-left.js
5 css: example.css
6 ---
7
8 <p id="nav">
9     <a href="../10_icon_buttons/">&laquo; Example 10</a>
10     <a href="../12_button_on_right/" class="next">Example 12 &raquo;</a>
11 </p>
12
13 <h1>Example 11 - right-to-left support</h1>
14
15 <p>
16     You can display the tree from right to left with the <strong>rtl</strong> option.
17 </p>
18
19 <div id="tree1" data-url="/example_data/"></div>
20
21 <h3>javascript</h3>
22
23 {% highlight js %}
24 $('#tree1').tree({
25     rtl: true
26 });
27 {% endhighlight %}