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