UNPKG

can-route-hash

Version:

[![Join our Slack](https://img.shields.io/badge/slack-join%20chat-611f69.svg)](https://www.bitovi.com/community/slack?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Join our Discourse](https://img.shields.io/discourse/https/

39 lines (33 loc) 1.02 kB
<!DOCTYPE html> <html lang="en"> <head> <title>can.route test page</title> </head> <body> <p>This is a dummy page to use<br/> for testing route goodness</p> <!-- For the main CanJS test suite --> <script type="text/javascript" src="../../../node_modules/steal/steal.js" main="@empty"></script> <!-- For this repo’s test suite --> <script type="text/javascript" src="../node_modules/steal/steal.js" main="@empty"></script> <script> steal.done().then(function() { Promise.all([ System.import('can-route-hash'), System.import('can-reflect') ]).then(function(modules){ var RouteHash = modules[0], canReflect = modules[1]; function callTestReady(){ var routeTestReady = window.parent.routeTestReady; if(routeTestReady) { routeTestReady(RouteHash, canReflect, window); } else { setTimeout(callTestReady,10); } } callTestReady(); }); }); </script> </body> </html>