chrome.app.window.create options, incompatibility with ID and STATE
Reported by
joao...@gmail.com,
Mar 18 2016
|
|||
Issue description
Chrome Version : Versão 49.0.2623.87 m
Working on a Chrome App.
What steps will reproduce the problem?
(1)set chrome.app.window.create options
(2)set and ID
(3)set a initial state like 'minimized' or 'maximized'
What is the expected result?
It's expected that my chrome app startup in 'minimized' state
What happens instead?
It startup in 'normal' state, the state option is getting ignored
If I delete de ID option, de state option works fine.
I got this code:
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('window.html', {
id: "example",
state: 'minimized',
'outerBounds': {
'width': 1024,
'height': 726,
'minWidth': 1024,
'minHeight': 726,
},
frame: {
type: "chrome",
color : "#999999",
activeColor: "#999999",
inactiveColor: '#e5e5e5'
},
});
});
,
Mar 30 2016
,
Apr 18 2016
Hello, I really need an answer for the problem. Anyone knows how to fix this? Best Regards
,
Apr 18 2017
Issue has not been modified or commented on in the last 365 days, please re-open or file a new bug if this is still an issue. For more details visit https://www.chromium.org/issue-tracking/autotriage - Your friendly Sheriffbot |
|||
►
Sign in to add a comment |
|||
Comment 1 by ranjitkan@chromium.org
, Mar 21 2016