wrong:
/**
* Flag used to keep track of whether a component decorated an already existing
* element or whether it created the DOM itself. If an element was decorated
* dispose will remove the node from the document, it is left up to the app.
* @type {boolean}
* @private
*/
goog.ui.Component.prototype.wasDecorated_ = false;
should be:
If an element was decorated, dispose will NOT remove the node from the document,
or
If an element was rendered, dispose will remove the node from the document,
Original issue reported on code.google.com by steida...@gmail.com on 20 Mar 2011 at 5:48
Original issue reported on code.google.com by
steida...@gmail.com
on 20 Mar 2011 at 5:48