angular/modules/playground/src/gestures/index.html
Paul Gschwendtner 3c9b4b51e2 refactor: update modules/ benchmarks and playgrounds to work with ESM (#48521)
* Switches away from the ESM-incompatible & unmaintained `ts_devserver`
  to `http_server`. This is the canonical server maintained by dev-infra
* Switches tests away from CommonJS specific logic. e.g. require.resolve
* Adjusts tests to work with Protractor spec bundling (Protractor does
  not support ESM execution, but we want to take ESM-written specs)
* Reworks playground and benchmarks to use `app_bundle` and `esbuild`
  instead of loading hundreds of files individually. This also makes
  tests more stable and more aligned with real applications.

PR Close #48521
2022-12-19 19:50:44 +00:00

26 lines
605 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Hammer.JS</title>
<meta
name="viewport"
content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1"
/>
<style type="text/css">
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<gestures-app></gestures-app>
<script src="/npm/node_modules/hammerjs/hammer.js"></script>
<script src="/angular/packages/zone.js/bundles/zone.umd.js"></script>
<script src="/app_bundle.js"></script>
</body>
</html>