I use Windows as a sliding pane. How do I make the window still the default size when the window is minimized and then restored?
minimize:
function
(e) {
var
restore = e.sender.wrapper.find(
".k-i-window-restore"
).parent();
restore.on(
"click"
,
function
() {
setTimeout(
function
() {
e.sender.wrapper.height(
"94%"
);
})
})
}