~mwhudson/lava-kernel-ci-views/use-the-orm

« back to all changes in this revision

Viewing changes to lava_kernel_ci_views_app/templates/lava_kernel_ci_views_app/index.html

  • Committer: Michael Hudson-Doyle
  • Date: 2011-10-17 04:21:54 UTC
  • Revision ID: michael.hudson@linaro.org-20111017042154-anjrb7tk5gwnz4qj
bye bye yui3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
{% block extrahead %}
4
4
{{ block.super }}
5
 
<script src="http://yui.yahooapis.com/3.3.0/build/yui/yui-min.js"></script>
6
5
<script type="text/javascript" src="{{ STATIC_URL }}lava_kernel_ci_views_app/js/nested-render.js"></script>
7
6
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}lava_kernel_ci_views_app/css/nested-render.css"></style>
8
7
{% endblock %}
127
126
    </p>
128
127
    <script>
129
128
      $('input.showhide.config').click(function () { hideCells(this, '.builds.container'); });
130
 
      YUI().use('node', 'event', function (_Y) { Y = _Y;
131
 
      //Y.on('click', hideCells, 'input.showhide.config', undefined, '.builds.container');
132
 
      Y.on('click', hideCells, 'input.showhide.test', undefined, '.tests.container');
133
 
      Y.on('click', hideCells, 'input.showhide.tree', undefined, '.trees.container');
134
 
      });
135
 
 
 
129
      $('input.showhide.test').click(function () { hideCells(this, '.tests.container'); });
 
130
      $('input.showhide.tree').click(function () { hideCells(this, '.trees.container'); });
136
131
    </script>
137
132
 
138
133
{% endblock %}