Left: | ||
Right: |
OLD | NEW |
---|---|
1 {% extends "frame.tmpl" %} | 1 {% extends "frame.tmpl" %} |
2 | 2 |
3 {% block body %} | 3 {% block body %} |
4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
5 function frame_url(parent_location) | 5 function frame_url(parent_location) |
6 { | 6 { |
7 return parent_location.hash.substring(1); | 7 var href = parent_location.href; |
8 var hash = parent_location.hash; | |
9 return base_href = href.substr( | |
saroyanm
2015/11/16 13:53:25
The description says Restrict allowed URLs for the
kzar
2015/11/16 23:01:09
So the sitekey_frame page contains a big iFrame an
saroyanm
2015/11/17 11:28:33
I see.
What about:
return parent_location.origin +
kzar
2015/11/19 12:56:00
Good point, much better. Done.
| |
10 0, href.length - hash.length - parent_location.pathname.length | |
11 ) + hash.substring(1); | |
8 } | 12 } |
9 </script> | 13 </script> |
10 {% endblock %} | 14 {% endblock %} |
OLD | NEW |