/[drupal]/contributions/modules/blockbar/blockbar.module
ViewVC logotype

Diff of /contributions/modules/blockbar/blockbar.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.2, Fri Nov 4 21:32:30 2005 UTC revision 1.3, Sun Nov 6 19:59:02 2005 UTC
# Line 54  function theme_blockbar_build_panels($pa Line 54  function theme_blockbar_build_panels($pa
54    // when overriding this theme function care should be taken so as to not break the javascript    // when overriding this theme function care should be taken so as to not break the javascript
55    // being called in the onclick event of the title <div>    // being called in the onclick event of the title <div>
56    
57    $output .= '<div class="blockbar-title" onclick="blockbar_toggle(\'' . $panel_id . '\',\'' . $blockbar_num . '\')">';    $output .= '<div class="blockbar-title blockbar-' . $blockbar_num . '-title" onclick="blockbar_toggle(\'' . $panel_id . '\',\'' . $blockbar_num . '\')">';
58    $output .= '      <div align="center" class="blockbar-head-img collapse" id="blockbarhead_' . $panel_id . '">';    $output .= '      <div align="center" class="blockbar-head-img collapse" id="blockbarhead_' . $panel_id . '">';
59    $output .= '      </div>';    $output .= '      </div>';
60    $output .= '    <div class="blockbar-head" nowrap>' . $panel_title . '</div>';    $output .= '    <div class="blockbar-head blockbar-' . $blockbar_num . '-head" nowrap>' . $panel_title . '</div>';
61    $output .= '</div>';    $output .= '</div>';
62    $output .= '<div id="' . $panel_id . '" style="display:none;">';    $output .= '<div class="blockbar-content blockbar-'. $blockbar_num .'-content" id="' . $panel_id . '" style="display:none;">';
63    $output .= $block->content;    $output .= $block->content;
64    $output .= '</div>';    $output .= '</div>';
65    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

  ViewVC Help
Powered by ViewVC 1.1.2