No constructor found for widget HTMLSnippet.widget.HTMLSnippet error

0
Hi Guys,       I  tried to add one HTMP snippet to a page with the popup layout in order to remove the “X” close page button in the popup window, but it always shows me the error: No constructor found for widget HTMLSnippet.widget.HTMLSnippet. Do you guys have any idea about this?
asked
1 answers
2

Hi Ryan,

 

You can use simple css to hide the close button.

 

.yourclassname .close{

     display: none;

}

 

answered