summaryrefslogtreecommitdiff
path: root/hugo/js/cross_framing_protection.js
blob: 1e1caf0fd4ff17daf37d9912a964b70b40b1d3e9 (plain)
1
2
3
4
5
6
7
8
9
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Conditionally included if framing is not allowed
 */
if(self == top) {
    document.documentElement.style.display = 'block' ;
} else {
    top.location = self.location ;
}