Advertisement
Guest User

Untitled

a guest
Oct 7th, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title of the document</title>
  6. <script>
  7. function core() {
  8. var foo = "foo, bar, baz";
  9. Event.trigger('foo.post', foo);
  10. }
  11. function plugin(params) {
  12. console.log("Plugin can do something with: " + params);
  13. }
  14. Event.connect('foo.post', plugin);
  15. core();
  16. </script>
  17. </head>
  18.  
  19. <body>
  20. defefefe
  21. </body>
  22.  
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement