- Update browserify, serve, and tape to the latest versions - update the example script to reflect serve's new CLI options - Remove the uneeded dependency on opn-cli - Force Travis to use NPM 5.x
18 lines
458 B
HTML
18 lines
458 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<title>Hello</title>
|
|
<script src='../pjax.js'></script>
|
|
<script src='example.js'></script>
|
|
</head>
|
|
<body>
|
|
<div class='body'>
|
|
<h1>Index</h1>
|
|
Hello.
|
|
Go to <a href='page2.html' class="js-Pjax">Page 2</a> and view your console to see Pjax events.
|
|
Clicking on <a href='index.html'>this page</a> will just reload the page entirely.
|
|
</div>
|
|
</body>
|
|
</html>
|