diff --git a/Pharo/PharoJs-Base-JS-CoreLibraries/PjTDomController.trait.st b/Pharo/PharoJs-Base-JS-CoreLibraries/PjTDomController.trait.st index a6eaf971..61e16319 100644 --- a/Pharo/PharoJs-Base-JS-CoreLibraries/PjTDomController.trait.st +++ b/Pharo/PharoJs-Base-JS-CoreLibraries/PjTDomController.trait.st @@ -220,7 +220,9 @@ PjTDomController >> setElement: domElement style: cssStyleAssociations [ { #category : 'visibility' } PjTDomController >> show: domElement [ - domElement style display: '' + + "We assume that 'display' property is introduce by the #hide: method" + domElement style removeProperty: 'display' ] { #category : 'visibility' }