Changeset 1a8ddc4c1234e664bfd96ff9a8ef95d4b07079f2
- Timestamp:
- 10/06/08 19:37:34
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1223321854 +0000
- git-parent:
[fb2f0f75ce45f4bf8e9bf60cb6cf505976bca9ff]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1223321854 +0000
- Message:
fixups, renames, refs #22
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfb2f0f7 |
r1a8ddc4 |
|
| 35 | 35 | <script type="text/javascript"> |
|---|
| 36 | 36 | $(document).ready(function(){ |
|---|
| 37 | | $(".accordion h3").eq(1).addClass("active"); |
|---|
| 38 | | $(".accordion span").eq(1).slideUp(); |
|---|
| 39 | | $(".accordion span:last").slideDown(); |
|---|
| | 37 | $(".accordion h3:first").addClass("active"); |
|---|
| | 38 | $(".accordion span").slideUp(); |
|---|
| | 39 | $(".accordion span:first").slideDown(); |
|---|
| 40 | 40 | |
|---|
| 41 | | $("div#container div").eq(1).slideUp(); |
|---|
| 42 | | $("div#container div:last").slideDown(); |
|---|
| | 41 | $("div#content > div:first").siblings().slideUp(); |
|---|
| 43 | 42 | |
|---|
| 44 | 43 | $(".accordion h3").click(function(){ |
|---|
| … | … | |
| 67 | 66 | }); |
|---|
| 68 | 67 | </script> |
|---|
| 69 | | |
|---|
| 70 | | |
|---|
| 71 | | <!--accordion 2--> |
|---|
| 72 | | <script type="text/javascript"> |
|---|
| 73 | | $(document).ready(function(){ |
|---|
| 74 | | $(".accordion2 h4").eq(1).addClass("active"); |
|---|
| 75 | | $(".accordion2 div").eq(1).slideUp(); |
|---|
| 76 | | $(".accordion2 div:last").slideDown(); |
|---|
| 77 | | |
|---|
| 78 | | $(".accordion2 h4").click(function(){ |
|---|
| 79 | | $(this).next("div").slideToggle("normal") |
|---|
| 80 | | .siblings("div:visible").slideUp("normal"); |
|---|
| 81 | | $(this).toggleClass("active"); |
|---|
| 82 | | $(this).siblings("h4").removeClass("active"); |
|---|
| 83 | | }); |
|---|
| 84 | | |
|---|
| 85 | | }); |
|---|
| 86 | | </script> |
|---|
| 87 | 68 | |
|---|
| 88 | 69 | <!-- search tabs --> |
|---|
| … | … | |
| 134 | 115 | </div><!-- end main --> |
|---|
| 135 | 116 | <div id="graph_controls_panel"> |
|---|
| 136 | | <?php include('graph_controls.inc') ?> |
|---|
| | 117 | <?php include('graph_panel.inc') ?> |
|---|
| 137 | 118 | </div><!-- end main --> |
|---|
| 138 | 119 | </div><!-- end content --> |
|---|
| rfb2f0f7 |
r1a8ddc4 |
|
| 106 | 106 | ws_displayinfo.end = end.toUTCString(); |
|---|
| 107 | 107 | load_worksheet(''); |
|---|
| | 108 | $(".datechoice").removeClass("selected"); |
|---|
| 108 | 109 | $('#range a.btn-slide').get(0).innerHTML = formated.join(' - '); |
|---|
| 109 | 110 | } |
|---|
| … | … | |
| 133 | 134 | </dl> |
|---|
| 134 | 135 | </div> |
|---|
| 135 | | <br/> |
|---|
| | 136 | <br style="clear:both; margin-bottom:0.5em;"/> |
|---|
| 136 | 137 | <div id="widgetCalendar"></div> |
|---|
| 137 | 138 | </div> |
|---|