2
之前儘量減少節點的webkit窗口看起來是這樣的:節點WebKit的窗口寬度問題
恢復它看起來像這樣的節點,WebKit的窗口後:
package.json
{
"name": "Gallay",
"description": "Simplified Billing",
"version": "0.1",
"main": "index.html",
"window": {
"icon": "icons/16.png",
"show": true,
"toolbar": false,
"frame": true,
"position": "center",
"width": 507,
"height": 570,
"min_width": 507,
"min_height": 570,
"max_width": 507,
"max_height": 570
}
}
我需要固定的寬度,同時最小化和恢復node-webkit窗口。我如何解決上述問題?
你是否試圖用全能'$(window).resize()'修復窗口的寬度? – grmmph
@grmmph你提到之後,我試過了。窗口正在恢復時調整大小。 –