2 <table class="sidebar_title" width="100%">
4 <td id="sidebar_title"><% t 'site.sidebar.search_results' %></td>
5 <td id="sidebar_close"><a href="javascript:closeSidebar()"><%= t 'site.sidebar.close' %></a></td>
8 <div id="sidebar_content">
12 <script type="text/javascript">
16 function openSidebar(options) {
17 options = options || {};
24 if (options.title) { $("#sidebar_title").html(options.title); }
26 if (options.width) { $("#sidebar").width(options.width); }
27 else { $("#sidebar").width("30%"); }
29 $("#sidebar").css("display", "block");
33 onclose = options.onclose;
36 function closeSidebar() {
37 $("#sidebar").css("display", "none");
47 function updateSidebar(title, content) {
48 $("#sidebar_title").html(title);
49 $("#sidebar_content").html(content);