15 lines
393 B
HTML
15 lines
393 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Basic PubSub Example</title>
|
||
|
<script src='../../event-pubsub-browser.js'></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<ul id='events'>
|
||
|
<li>
|
||
|
<h1>PubSub Events inside of and using an Object as the scope Example</h1>
|
||
|
</li>
|
||
|
</ul>
|
||
|
<script src='objectScope.js'></script>
|
||
|
</body>
|
||
|
</html>
|