window.Asc.plugin.resizeWindow (width, height, minW, minH, maxW, maxH)
Defines the method used to change the window size updating the minimum/maximum sizes.
This method is used for visual modal plugins only.
Name |
Description |
Type |
width |
The window width. |
number |
height |
The window height. |
number |
minW |
The window minimum width. |
number |
minH |
The window minimum height. |
number |
maxW |
The window maximum width. |
number |
maxH |
The window maximum height. |
number |
window.Asc.plugin.init = function() {
this.resizeWindow(392, 147, 392, 147, 392, 147);
};