Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Unified Diff: experimental/webtry/templates/index.html

Issue 292433002: Move zooming into its own component, imported via HTML Imports. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: experimental/webtry/templates/index.html
diff --git a/experimental/webtry/templates/index.html b/experimental/webtry/templates/index.html
index 11a0641ae28f51c80ff2d2869288f3d76a24f4de..58b7e3578d59c2aa7f3c007abff1dbcdf072217f 100644
--- a/experimental/webtry/templates/index.html
+++ b/experimental/webtry/templates/index.html
@@ -2,19 +2,17 @@
<html>
<head>
<title>Skia WebTry</title>
- <meta charset='utf-8' />
- <script src="/res/js/pointerevents.min.js" type="text/javascript" charset="utf-8"></script>
- <link rel="stylesheet" href="/res/css/webtry.css" type="text/css" media="screen">
- <link rel="stylesheet" href="/res/css/cm/codemirror.css" type="text/css" media="screen">
+ {{template "headercommon.html" .}}
+ <link rel='import' type='text/html' href='/res/imp/zoom.html'>
</head>
<body>
{{template "titlebar.html" .}}
{{template "content.html" .}}
- <script type='text/javascript' charset='utf-8'>
+ <script type='text/javascript'>
// Not running in a workspace.
- var workspaceName = "";
+ var workspaceName = '';
</script>
- <script src="/res/js/webtry.js" type="text/javascript" charset="utf-8"></script>
+ {{template "footercommon.html" .}}
</body>
</html>

Powered by Google App Engine
This is Rietveld 408576698