[TIMOB-964] Modal windows will not reopen
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2011-04-15T02:40:23.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Release 1.4.0 |
Components | iOS |
Labels | n/a |
Reporter | Stephen Tramer |
Assignee | Stephen Tramer |
Created | 2011-04-15T02:40:23.000+0000 |
Updated | 2017-03-02T18:57:33.000+0000 |
Description
Sample:
var win1 = Ti.UI.createWindow();
var win2 = Ti.UI.createWindow({
barColor:'black',
backgroundColor:'white',
});
win1.open();
setTimeout(function () {win2.open({modal:true});}, 1000);
setTimeout(function () {win2.close();}, 2000);
setTimeout(function () {win2.open({modal:true});}, 3000);
Test doesn't duplicate, and can't duplicate in the Music settings pane (which originally caused the problem). Could be related to a fix for a different modal bug.
Closing as invalid.