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

Side by Side Diff: templates/frame.tmpl

Issue 29328600: Issue 3122 - Add sitekey frame files ready for sitekey testcases (Closed)
Patch Set: Deleted some erroneous whitespace Created Sept. 24, 2015, 4:58 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « static/site.key ('k') | templates/sitekey_frame.tmpl » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>{{ title }}</title>
5 <style>
6 html, body { margin: 0; height: 100%; }
7 #iframe { display: block; width: 100%; height: 100%; border: none; }
8 </style>
9 {{ head|safe }}
10 </head>
11 <body>
12 <iframe id="iframe"></iframe>
13
14 {% block body %}{{ body|safe }}{% endblock %}
15
16 <script type="text/javascript">
17 var iframe = document.getElementById("iframe")
18
19 function update_iframe_location()
20 {
21 if (window.location.hash)
22 iframe.src = transform_url(window.location.href,
23 window.location.hash);
24 }
25 window.addEventListener("hashchange", update_iframe_location);
26 update_iframe_location();
27 </script>
28 </body>
29 </html>
OLDNEW
« 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