File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1416,13 +1416,13 @@ Editor.InfoPanel.prototype.switchView = function (view) {
1416
1416
Editor . InfoView = function ( ) { } ;
1417
1417
1418
1418
Editor . InfoView . prototype . show = function ( ) {
1419
- document . getElementById ( this . name + "View" ) . hidden = false ;
1419
+ document . getElementById ( this . name + "View" ) . style . display = "block" ;
1420
1420
document . getElementById ( this . name + "Tab" ) . setAttribute ( "selected" , "true" ) ;
1421
1421
} ;
1422
1422
1423
1423
Editor . InfoView . prototype . hide = function ( ) {
1424
1424
document . getElementById ( this . name + "Tab" ) . removeAttribute ( "selected" ) ;
1425
- document . getElementById ( this . name + "View" ) . hidden = true ;
1425
+ document . getElementById ( this . name + "View" ) . style . display = "none" ;
1426
1426
} ;
1427
1427
1428
1428
/*
@@ -1446,12 +1446,12 @@ Editor.LogView.prototype = new Editor.InfoView;
1446
1446
1447
1447
Editor . LogView . prototype . show = function ( ) {
1448
1448
Editor . InfoView . prototype . show . call ( this ) ;
1449
- document . getElementById ( "logButtons" ) . hidden = false ;
1449
+ document . getElementById ( "logButtons" ) . style . display = "flex" ;
1450
1450
} ;
1451
1451
1452
1452
Editor . LogView . prototype . hide = function ( ) {
1453
1453
Editor . InfoView . prototype . hide . call ( this ) ;
1454
- document . getElementById ( "logButtons" ) . hidden = true ;
1454
+ document . getElementById ( "logButtons" ) . style . display = "none" ;
1455
1455
} ;
1456
1456
1457
1457
Editor . LogView . prototype . setLog = function ( log ) {
Original file line number Diff line number Diff line change @@ -311,11 +311,11 @@ limitations under the License.
311
311
</hbox >
312
312
<iframe flex =" 1" id =" logView" src =" LogFrame.html" type =" content" >
313
313
</iframe >
314
- <iframe flex =" 1" id =" helpView" src =" HelpView.html" hidden = " true " type =" content" >
314
+ <iframe flex =" 1" id =" helpView" src =" HelpView.html" style = " display:none " type =" content" >
315
315
</iframe >
316
- <iframe flex =" 1" id =" uiView" src =" ui-view.html" hidden = " true " type =" content" >
316
+ <iframe flex =" 1" id =" uiView" src =" ui-view.html" style = " display:none " type =" content" >
317
317
</iframe >
318
- <iframe flex =" 1" id =" rollupView" src =" rollup-view.html" hidden = " true " type =" content" >
318
+ <iframe flex =" 1" id =" rollupView" src =" rollup-view.html" style = " display:none " type =" content" >
319
319
</iframe >
320
320
</vbox >
321
321
</overlay >
You can’t perform that action at this time.
0 commit comments