~ubuntu-branches/ubuntu/precise/ghc/precise

« back to all changes in this revision

Viewing changes to libraries/frames.html

  • Committer: Bazaar Package Importer
  • Author(s): Joachim Breitner
  • Date: 2011-01-17 12:49:24 UTC
  • Revision ID: james.westby@ubuntu.com-20110117124924-do1pym1jlf5o636m
Tags: upstream-7.0.1
ImportĀ upstreamĀ versionĀ 7.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html 
 
2
     PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
 
3
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml">
 
5
<head>
 
6
<script src="haddock-util.js" type="text/javascript"></script>
 
7
<script type="text/javascript"><!--
 
8
/*
 
9
 
 
10
  The synopsis frame needs to be updated using javascript, so we hide
 
11
  it by default and only show it if javascript is enabled.
 
12
 
 
13
  TODO: provide some means to disable it.
 
14
*/
 
15
function load() {
 
16
  var d = document.getElementById("inner-fs");
 
17
  d.rows = "50%,50%";
 
18
  postReframe();
 
19
}
 
20
--></script>
 
21
<frameset id="outer-fs" cols="25%,75%" onload="load()">
 
22
  <frameset id="inner-fs" rows="100%,0%">
 
23
    <frame src="index-frames.html" name="modules">
 
24
    <frame src="" name="synopsis">
 
25
  </frameset>
 
26
  <frame src="index.html" name="main">
 
27
</frameset>
 
28
</html>