12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
|
//WndUIStateClass constructor
|
||
|
function WndUiStateClass() {
|
||
|
|
||
|
}
|
||
|
|
||
|
WndUiStateClass.prototype = {
|
||
|
GetWndList: function () {
|
||
|
var wndinfo = WndUiExcute('GetWndsInfo');
|
||
|
var obj = JSON.parse(wndinfo);
|
||
|
return obj.wndInfos;
|
||
|
}
|
||
|
}
|