Nickolay - KiokuJS-0.01

Documentation | Source
Role('KiokuJS.Test.Person.Hobby', {
    
    requires : [ 'setMood' ],
    
    
    has : {
        hobbyName       : null
    },
    
    
    methods : {
        
        doHobby : function () {
            this.setMood('good')
        }
    }
})