Skip to content
Snippets Groups Projects
Commit fbc32101 authored by Robin Appelman's avatar Robin Appelman
Browse files

don't hide text viewer when clicking inside the text box

parent 73515284
Branches
No related tags found
No related merge requests found
......@@ -50,6 +50,14 @@ OC_TextViewer.showText=function(dir,file){
div.setAttribute('class','center');
div.addEvent('onclick',OC_TextViewer.hideText)
OC_TextViewer.textFrame=document.createElement('div');
OC_TextViewer.textFrame.addEvent('onclick',function(e){
if(window.event = true){
window.event.cancelBubble = true;
}
if(e.stopPropagation){
e.stopPropagation();
}
});
OC_TextViewer.textFrame.pre=document.createElement('pre');
div.appendChild(OC_TextViewer.textFrame);
OC_TextViewer.textFrame.appendChild(OC_TextViewer.textFrame.pre);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment