peerigon / alamid

Framework for RESTful JavaScript web applications that run both on the server- and clientside.
http://www.alamidjs.com
MIT License
23 stars 3 forks source link

Implement select-method in DisplayObject #156

Closed jhnns closed 11 years ago

jhnns commented 11 years ago

It would be cool to select nodes under the current parentNode of a DisplayObject.

    myMethod: function () {
        // calls internally this.parentNode.getElement(selector)
        this.select(".myClass");
    }
jhnns commented 11 years ago

The method has been implemented and is called find() now.