mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
58 lines
1.8 KiB
HTML
58 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Angular 2 Viewer - Demo</title>
|
|
<base href="/">
|
|
|
|
<!-- 1. Load libraries -->
|
|
<!-- IE required polyfills, in this exact order -->
|
|
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
|
|
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
|
|
<script src="node_modules/angular2/es6/dev/src/testing/shims_for_IE.js"></script>
|
|
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
|
|
<script src="node_modules/systemjs/dist/system.src.js"></script>
|
|
<script src="node_modules/rxjs/bundles/Rx.js"></script>
|
|
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
|
|
<script src="node_modules/angular2/bundles/router.dev.js"></script>
|
|
<script src="node_modules/angular2/bundles/http.dev.js"></script>
|
|
|
|
<script src="node_modules/pdfjs-dist/build/pdf.js"></script>
|
|
<script src="node_modules/pdfjs-dist/build/pdf.worker.js"></script>
|
|
|
|
<script>
|
|
PDFJS.workerSrc = 'node_modules/pdfjs-dist/build/pdf.worker.js';
|
|
</script>
|
|
|
|
<script>
|
|
System.config({
|
|
defaultJSExtensions: true,
|
|
map: {
|
|
'rxjs': 'node_modules/rxjs',
|
|
'angular2': 'node_modules/angular2',
|
|
'app': 'dist/main'
|
|
},
|
|
packages: {
|
|
'app': {
|
|
defaultExtension: 'js'
|
|
},
|
|
'rxjs': {
|
|
defaultExtension: 'js'
|
|
},
|
|
'angular2': {
|
|
defaultExtension: 'js'
|
|
}
|
|
}
|
|
});
|
|
|
|
System.import('app').catch(console.log.bind(console));
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
<canvas id="the-canvas" style="border:1px solid black;"/>
|
|
<ng2-alfresco-viewer>Loading...</ng2-alfresco-viewer>
|
|
|
|
</body>
|
|
</html>
|