Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function openNumConView()
  2. {
  3.     alert("test");
  4. }
  5.  
  6. function setupEventHandlers()
  7. {
  8.     topText = document.getElementById("topText");
  9.    
  10.     document.getElementById("numConButton").onclick = function()
  11.     {
  12.         openNumConView();
  13.     };
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement