0

I'm trying to figure out how to add a new custom menu block in the left panel when viewing a Wiki. For example, there is the "Hierarchy" block or "Tags" block by default, how can I add my own new block?

flag

1 Answer

0

How about something like this:

$('<div class="wiki-page-browse-menu-title">New title</div>' +
  '<div class="wiki-page-browse-menu-separator"></div>' +
  '<ul class="wiki-page-browse-menu">' +
    '<li><a href="somewhere">New entry</a></li>' +
  '</ul>').appendTo('#wiki-page-search');
link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.