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: Attempt to make frame URL logic clearer Created Oct. 13, 2015, 11:28 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html{% if public_key and signature %} data-adblockkey="{{ public_key + "_" + si gnature }}"{% endif %}>
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 = frame_url(window.location);
23 }
24 window.addEventListener("hashchange", update_iframe_location);
25 update_iframe_location();
26 </script>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « static/site.key ('k') | templates/sitekey_frame.tmpl » ('j') | templates/sitekey_frame.tmpl » ('J')

Powered by Google App Engine
This is Rietveld