Description
Inspired by the djangohandbook.com comment system, this module allows you to
place comments in-line within a piece of content. This means, instead of having
a single thread of comments at the bottom of a piece of content, users can
comment directly on the content that the comment relates too.
Instructions
To add an in-line comment block to a piece of content simply wrap the content
as follows:
<div id="inline-comments-{integer}">
<p>This is content that I want to be commentable!</p>
</div>Where {integer} is replaced with a positive integer that is unique to that
section within that node. When the page is loaded, the module scans the page
for divs with id's in this format and makes them commentable. A user simply
clicks on the area (it will highlight when the mouse hovers over it) and a
Javascript popup box will appear in the middle of the page showing all previous
comments on this content and allow the user to post there own comment. Simples!