2 $id => 'optional_show_'.++$uniq_id_count
11 <& /util/import_javascript.mas, classes => 'jqueryui' &>
12 <div id="<% $id %>" class="optional_show <% $class %>">
13 <h3 class="<% $default_show ? 'active' : '' %>"><span class="icon"> </span><span class="title"><% $title %></span></h3>
15 <% $m->content || $content %>
18 <script type="text/javascript">
20 $("#<% $id %> h3").click(function() {
21 $(this).next().toggle();
22 $(this).toggleClass('active');
24 })<% $default_show ? '' : '.next().hide();' %>