~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/templates/base-layout.pt

  • Committer: Danilo Segan
  • Date: 2011-06-30 17:38:28 UTC
  • mto: This revision was merged to the branch mainline in revision 13448.
  • Revision ID: danilo@canonical.com-20110630173828-dswp9pwlgen9iibo
Remove old mochikit activateCollapsibles functions which are not used anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
      html, body {background-image: url(/@@/demo) !important;}
44
44
    </style>
45
45
 
46
 
    <tal:comment condition="nothing">
47
 
      This CSS collapses the contents of collapsible fieldsets,
48
 
      without the flashing that would result from doing it in JavaScript.
49
 
      activateCollapsibles() removes the class="collapsed" from fieldsets, to
50
 
      re-show their divs, once the children themselves have been collapsed.
51
 
    </tal:comment>
52
 
    <style type="text/css">
53
 
      fieldset.collapsed div, fieldset div.collapsed {display: none;}
54
 
    </style>
55
 
    <noscript>
56
 
      <style type="text/css">
57
 
        fieldset.collapsible div, fieldset div.collapsed {display: block;}
58
 
      </style>
59
 
    </noscript>
60
 
 
61
46
    <metal:page-javascript
62
47
        use-macro="context/@@+base-layout-macros/page-javascript" />
63
48
    <metal:block define-slot="head_epilogue"></metal:block>