[PORTAL-7] Rebase
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _entries / 24_oncreateli.md
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/_entries/24_oncreateli.md b/ecomp-portal-FE/client/bower_components/jqTree/_entries/24_oncreateli.md
deleted file mode 100644 (file)
index 3008f9d..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
----
-title: onCreateLi
-name: options-oncreateli
----
-
-The function is called for each created node. You can use this to define extra html.
-
-{% highlight js %}
-$('#tree1').tree({
-    data: data,
-    onCreateLi: function(node, $li) {
-        // Add 'icon' span before title
-        $li.find('.jqtree-title').before('<span class="icon"></span>');
-    }
-});
-{% endhighlight %}