Menu

#16 OO outline features don't always work

open
Outlining (5)
5
2005-08-21
2005-08-21
No

If I create Javascript like the following:

var foo = {

bar : "hello world!",

init : function() {
alert("starting");
},

speak : function() {
alert(bar);
},

destroy : function() {
alert("finished");
}
};

the init(), speak(), and destroy() functions don't
appear in outline mode.

Discussion


Log in to post a comment.