You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Removes aView from the view's list of subViews. Once done, aView is no longer a child of the current view, and this is represented in the DOM as well. aView's superView will be null.
Usage
var aView = new UI.View();
aView.init();
var bView = new UI.Label();
bView.init();
aView.addSubView (bView);
aView.removeSubView (bView);