Advertisement
some_kid

index.html

Jul 23rd, 2014
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <link rel="stylesheet" href="style.css"/>
  5.     <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  6.     <title>Demo app</title>
  7.     <script>
  8.         overwolf.settings.registerHotkey(
  9.                 "my_cool_action",
  10.                 function (arg) {
  11.                     if (arg.status == "success") {
  12.                         alert("This is my cool action!");
  13.                     }
  14.                 }
  15.         );
  16.  
  17.         ----- FUNCTIONS FROM ORIGINAL DEMO SNIPPED -----
  18.     </script>
  19. </head>
  20.  
  21. <body>
  22. ----- BODY FROM ORIGINAL DEMO SNIPPED -----
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement