Topic: initialization()

First, awesome script.  Extremely functional and easy to implement!
I'm having trouble getting anything in the initialization function to actually work.  even:

        tree = new Mif.Tree({
            initialize: function(){
                alert('x');
                this.initCheckbox('deps');
            },
            container: $('tree'),
            dfltType:'folder',
            height: 18
        });

doesn't alert anything and checkboxes are not present.  Not sure what i'm missing here.

Re: initialization()

try latest version from trunk

Re: initialization()

Worked, thanks!