LEFT | RIGHT |
1 title=ABP Test Pages | 1 title=ABP Test Pages |
2 template=frame | 2 template=frame |
3 | 3 |
4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
5 function transform_url(href, hash) | 5 function frame_url(parent_location) |
6 { | 6 { |
| 7 var href = parent_location.href; |
| 8 var hash = parent_location.hash; |
7 return href.substr(0, href.length - hash.length). | 9 return href.substr(0, href.length - hash.length). |
8 replace("://testpages", "://www.testpages") + hash.substring(1); | 10 replace("://testpages", "://www.testpages") + hash.substring(1); |
9 } | 11 } |
10 </script> | 12 </script> |
LEFT | RIGHT |