diff options
| author | David Waern <david.waern@gmail.com> | 2012-02-04 03:01:30 +0100 | 
|---|---|---|
| committer | David Waern <david.waern@gmail.com> | 2012-02-04 03:01:30 +0100 | 
| commit | 5e0812943b3da5952e9c50fb93f6079cb9f1c858 (patch) | |
| tree | 20452e6b4a370f419fb55bb3795e7f81125a1bb6 /html | |
| parent | e596b668926725fc19f1e4f63ffcc569cdd93eda (diff) | |
| parent | 11385cf01f0d852782444ebfeb4e5092c174c6f8 (diff) | |
Merge branch 'fix-for-186' of https://github.com/sol/haddock into ghc-7.4
Diffstat (limited to 'html')
| -rw-r--r-- | html/frames.html | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/html/frames.html b/html/frames.html index 30ce1fa5..1b4e38d4 100644 --- a/html/frames.html +++ b/html/frames.html @@ -3,6 +3,7 @@       "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">  <html xmlns="http://www.w3.org/1999/xhtml">  <head> +<title></title>  <script src="haddock-util.js" type="text/javascript"></script>  <script type="text/javascript"><!--  /* @@ -18,11 +19,12 @@ function load() {    postReframe();  }  --></script> +</head>  <frameset id="outer-fs" cols="25%,75%" onload="load()">    <frameset id="inner-fs" rows="100%,0%"> -    <frame src="index-frames.html" name="modules"> -    <frame src="" name="synopsis"> +    <frame src="index-frames.html" name="modules" /> +    <frame src="" name="synopsis" />    </frameset> -  <frame src="index.html" name="main"> +  <frame src="index.html" name="main" />  </frameset>  </html> | 
