Add a disclaimer for interviewees (thanks Trace Mayer)

This fix allows journalists to better understand the open-source nature of Bitcoin
This commit is contained in:
Saivann 2013-04-20 01:10:38 -04:00
parent 1be5ae6738
commit 033fba2504
3 changed files with 53 additions and 16 deletions

View file

@ -117,3 +117,17 @@ else p.style.height=nhe+'px';
t.style.display='none';
cancelEvent(e);
}
function disclaimershow(e){
var p=t=getEventTarget(e);
while(p.nodeType!=1||p.nodeName!='P')p=p.parentNode;
p=p.nextSibling;
while(p.nodeType!=1||p.nodeName!='P')p=p.nextSibling;
p.style.height='auto';
var nhe=getHeight(p);
p.style.height='0px';
p.style.height=nhe+'px';
t.parentNode.removeChild(t);
cancelEvent(e);
}