ipeychev / liferay-aui-upgrade-tool

1 stars 1 forks source link

'aui-helper-hidden' class should be changed to 'hide' #14

Closed robframpton closed 11 years ago

robframpton commented 11 years ago

Currently LAUT changes the aui-helper-hidden class to helper-hidden, which still effectively hides the element possessing the class, but when JS is used to show the element, it will remain hidden.

<div class="node helper-hidden"></div>
A.one('.node').show()

After the show() method is fired, the element will remain hidden. If we change the class to 'hide', the show() methods will still function correctly.