it's very hackable:
Secret.implement({
set: function(message){
secret = message;
}
});
msg.set("hello, world");
msg.get(); // returns "hello, world"On Oct 10, 10:47 pm, "Nathan White" <[EMAIL PROTECTED]> wrote: > ok. I have made two updates to my Privates Mutator. > > Now if you pass in functions into the privates object a bind is created to > the class. > > http://www.nwhite.net/2008/10/10/private-methods-with-mootools-update2/ > > an example is provided.
