2014-02-16 74 views
2

之前儘量減少節點的webkit窗口看起來是這樣的:節點WebKit的窗口寬度問題

Before minimizing

恢復它看起來像這樣的節點,WebKit的窗口後:

After restoring

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窗口。我如何解決上述問題?

+2

你是否試圖用全能'$(window).resize()'修復窗口的寬度? – grmmph

+0

@grmmph你提到之後,我試過了。窗口正在恢復時調整大小。 –

回答

1

包括jQuery和下面的JavaScript後,問題就可以解決了。

$(document).ready(function(){ 
     $(window).resize(function(){ 
      window.resizeTo(507,570); 
      window.focus(); 
     }); 
    }); 
0

加入的package.json:"resizable": false和刪除min_widthmin_heightmax_widthmax_height