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
{{ message }}
This repository was archived by the owner on Jan 19, 2019. It is now read-only.
TiQuery provides a way to quickly and easily release views from memory within a context.
// create a wrapper view and remove it from the window
var view = $.View();
window.add(view);
// add more to the view
// release the view from memory
$.release(view);
// create the view again and start over
view = $.View({
width: "100%",
height: "100%"
});
win.add(view);