Advertisement
TwiNNeR

sasfasf

Apr 26th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function showInfoText(text) {
  2.     addClass(infoText, "active");
  3.         fadeIn(infoText);
  4.         isActive = true;
  5.     infoText.querySelectorAll("div")[0].innerHTML = text;
  6. }
  7.  
  8. function hideInfoText() {
  9.     removeClass(infoText, "active");
  10.         isActive = false;
  11.  
  12.     infoText.querySelectorAll("div")[0].innerHTML = "";
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement