Skip to content
Snippets Groups Projects
Commit adeb7589 authored by Bruna Cruz's avatar Bruna Cruz
Browse files

Merge branch 'botao' into 'development'

changed bug error on button

See merge request !75
parents 66948803 31e3a7e3
No related branches found
No related tags found
1 merge request!75changed bug error on button
......@@ -14,10 +14,10 @@ export class EventsComponent implements OnInit {
changeButton (i) {
var text = document.getElementsByClassName("more_text") as HTMLCollectionOf<HTMLElement>;
if (text[i].style.display === "none") {
if (text[i].style.display === "") {
text[i].style.display = "inline";
} else {
text[i].style.display = "none";
text[i].style.display = "";
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment