Kunena 7.0.8 Released

The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0

Solved [implemented] attachment window ux feedback

More
11 years 4 months ago - 11 years 3 months ago #163536 by ruud
Hi, as stated here: www.kunena.org/forum/kunena-4-0-support-...5-ux-feedback#163457 I think the window for adding attachments is 'to big' and intrusive as replyies with attachments are only a small part of all replies.

I have experimented and was able to make the attachment "div" togglable.
When entering the reply editor it is hidden by default (as not everybody wants to always add an attachment).
The text Attachment is now a button.
When clicking this button the visible state of the attachment window is toggled (show / hide)

The code is as follows:
Code:
<script type="text/javascript" language="JavaScript"> function ToggleDisplay(d) { if(document.getElementById(d).style.display == "none") { document.getElementById(d).st$ else { document.getElementById(d).style.display = "none"; } } </script>
and
Code:
<button onclick="javascript:ToggleDisplay('kpost-attachments-window')" name="attachment" class="btn"><?php echo JText::_('COM_KUNENA_EDITOR_ATTACHMENTS'); ?></button>

I gave the div that holds the attachment window the id "kpost-attachment-window"

Please note that I am not a developer :) this is just a code mock-up for UX testing :woohoo:

This is what it looks like: 1. hidden, 2. show




sharing = caring
Last edit: 11 years 3 months ago by ruud.
The following user(s) said Thank You: ChaosHead

Please Log in or Create an account to join the conversation.

More
11 years 1 month ago #166277 by 810
is added in K4.0. closing this topic

Please Log in or Create an account to join the conversation.

Time to create page: 0.250 seconds