<div id="sidebar">
<table class="sidebar_title" width="100%">
<tr>
- <td align="left" id="sidebar_title"><% t 'site.sidebar.search_results' %></td>
- <td align="right"><a href="javascript:closeSidebar()"><%= t 'site.sidebar.close' %></a></td>
+ <td id="sidebar_title"><% t 'site.sidebar.search_results' %></td>
+ <td id="sidebar_close"><a href="javascript:closeSidebar()"><%= t 'site.sidebar.close' %></a></td>
</tr>
</table>
<div id="sidebar_content">
onclose = null;
}
+ if (options.title) { $("sidebar_title").innerHTML = options.title; }
+
if (options.width) { $("sidebar").style.width = options.width; }
else { $("sidebar").style.width = "30%"; }
$("sidebar_title").innerHTML = title;
$("sidebar_content").innerHTML = content;
}
-
- function sidebarOpen(title) {
- return $("sidebar").style.display == "block" &&
- $("sidebar_title").innerHTML == title;
- }
// -->
</script>