Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: templates/frame.tmpl

Issue 29328600: Issue 3122 - Add sitekey frame files ready for sitekey testcases (Closed)
Patch Set: Created Sept. 24, 2015, 4:56 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « static/site.key ('k') | templates/sitekey_frame.tmpl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/frame.tmpl
diff --git a/templates/frame.tmpl b/templates/frame.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..fc90f6b8940901b4b3104efb0ecf3fe11b3bb819
--- /dev/null
+++ b/templates/frame.tmpl
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>{{ title }}</title>
+ <style>
+ html, body { margin: 0; height: 100%; }
+ #iframe { display: block; width: 100%; height: 100%; border: none; }
+ </style>
+ {{ head|safe }}
+ </head>
+ <body>
+ <iframe id="iframe"></iframe>
+
+ {% block body %}{{ body|safe }}{% endblock %}
+
+ <script type="text/javascript">
+ var iframe = document.getElementById("iframe")
+
+ function update_iframe_location()
+ {
+ if (window.location.hash)
+ iframe.src = transform_url(window.location.href,
+ window.location.hash);
+ }
+ window.addEventListener("hashchange", update_iframe_location);
+ update_iframe_location();
+ </script>
+ </body>
+</html>
+
+
+
« no previous file with comments | « static/site.key ('k') | templates/sitekey_frame.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld