source: violetspace-prototype/assets/js/violettree.js @ 1

Last change on this file since 1 was 1, checked in by dungnv, 11 years ago
File size: 487 bytes
Line 
1if(jQuery) (function($){
2       
3        $.extend($.fn, {
4                violetTree: function(o, h) {
5                        var loadedNode = null;
6
7                        if( !o ) var o = {};
8                        if( o.user == undefined ) o.user = null;
9                        if( o.script == undefined ) o.script = 'jqueryFileTree.php';
10
11                        $(this).each( function() {
12                                function loadTree() {
13                                        alert(o.script);
14                                };
15
16                                function showTree() {
17
18                                };
19
20                                function showContextMenu () {
21
22                                };
23
24                                function s
25
26                                hello();
27                        });
28                }
29        });
30
31})(jQuery);
Note: See TracBrowser for help on using the repository browser.