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.
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.
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.