Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@458 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
6 changed files with 46 additions and 0 deletions
|
After Width: | Height: | Size: 278 B |
|
After Width: | Height: | Size: 751 B |
|
After Width: | Height: | Size: 714 B |
|
After Width: | Height: | Size: 834 B |
|
After Width: | Height: | Size: 274 B |
@ -0,0 +1,46 @@ |
|||||||
|
<html> |
||||||
|
<head> |
||||||
|
<title>Dynamic Help</title> |
||||||
|
<STYLE><!-- |
||||||
|
|
||||||
|
.ctxbody { |
||||||
|
overflow-y: auto; |
||||||
|
margin: 5px 5px 5px 5px; |
||||||
|
font-family: Tahoma; |
||||||
|
font-size: 8pt; |
||||||
|
white-space: nowrap; |
||||||
|
} |
||||||
|
|
||||||
|
.section { |
||||||
|
margin-top: 5px; |
||||||
|
margin-bottom: 35px; |
||||||
|
} |
||||||
|
|
||||||
|
.link { |
||||||
|
color:blue; |
||||||
|
text-decoration:underline; |
||||||
|
cursor:pointer; |
||||||
|
} |
||||||
|
--> |
||||||
|
</STYLE> |
||||||
|
<script type="text/javascript"><!-- |
||||||
|
|
||||||
|
function ExpandCollapse(idx) |
||||||
|
{ |
||||||
|
var contentSpan = document.getElementById("content_" + idx); |
||||||
|
if(contentSpan != null) |
||||||
|
{ |
||||||
|
contentSpan.style.display = (contentSpan.style.display == "none")?"":"none"; |
||||||
|
} |
||||||
|
|
||||||
|
var sectionImage = document.getElementById("image_" + idx); |
||||||
|
if(sectionImage != null) |
||||||
|
{ |
||||||
|
sectionImage.src = (contentSpan.style.display == "none")?"ClosedBook.png":"OpenBook.png"; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
--></script> |
||||||
|
</head> |
||||||
|
<body class="ctxbody"></body> |
||||||
|
</html> |
||||||
Loading…
Reference in new issue