Forum Activity for @ultrajam

SteveX
@ultrajam
07/07/14 01:23:01PM
2,587 posts

Docs developer list


Using Jamroom

Thanks Brian. I think it showed like that before, I don't remember it looking wrong the last time I looked.

One other thing though, using FF on mac I get the "select text" cursor rather than a "finger" when hovering over a developer's name.
SteveX
@ultrajam
07/07/14 01:19:04PM
2,587 posts

Jamroom.net profile feeds


Using Jamroom

Quote: Edit: just refreshed the feeds and now leads to https://www.jamroom.net
Sorry Brian, I should have made my edit clearer - It was on the feed title but after I refreshed the feeds the link changed to https://www.jamroom.net which is as it should be.
SteveX
@ultrajam
07/07/14 03:20:23AM
2,587 posts

jrElastic accordion


Design and Skin Customization

Yes, that's what the accordion does - one set is always open.

You could try something like this from the comments in this article:
http://css-tricks.com/snippets/jquery/simple-jquery-accordion/

$(document).ready(function($) {
	$('.accordion dd').hide();
	$('.accordion dt a').click(function(){
		if ($(this).hasClass('selected')) {
			$(this).removeClass('selected');
			$(this).parent().next().slideUp();
		} else {
			$('.accordion dt a').removeClass('selected');
			$(this).addClass('selected');
			$('.accordion dd').slideUp();
			$(this).parent().next().slideDown();
		}
		return false;
	});
});
If it's conflicting with the admin accordion change the class and modify the css to suit.
SteveX
@ultrajam
07/06/14 02:05:19PM
2,587 posts

jrElastic accordion


Design and Skin Customization

As far as I know its just jquery, not a separate script.

This does it in the acp for a definition list with the class "accordion" (needs to be the same structure as the acp dl):
<script type="text/javascript">
$(document).ready(function(){
(function($) { var allPanels = $('.accordion > dd[id!="ccore"]').hide();
    $('.accordion > a > dt').click(function() {
    allPanels.slideUp();
    $(this).parent().next().slideDown();
    return false; }); })(jQuery);
return true;
 });
</script>

You'd need to add that jquery either into the template, or via a module or skin. If you don't wnat to use the same structure, change the selectors and adjust the js to suit.

Can you post the structure of the menu you want to use?
updated by @ultrajam: 07/06/14 02:37:34PM
SteveX
@ultrajam
07/06/14 05:13:34AM
2,587 posts

How to get UjCategories


Archived

chorton581:
can i get a copy of this?

I've sent an invite to the channel, so add that to your marketplace and you should be able to install ujCategories. Sorry for the delay.
SteveX
@ultrajam
07/06/14 05:03:28AM
2,587 posts

Jamroom.net profile feeds


Using Jamroom

Just in case its useful, heres a screenshot of how the Jamroom announcements feed looks in the reader. It does have a title for the feed which links to the profile.
vienna-blog-feed2.png vienna-blog-feed2.png - 255KB

updated by @ultrajam: 07/06/14 05:03:51AM
SteveX
@ultrajam
07/06/14 04:53:54AM
2,587 posts

Jamroom.net profile feeds


Using Jamroom

If I click on the feed item title (@Ultrajam - @Ultrajam is now following @Proxima) I arrive at the action page.

Under the "Shared By" section is the text "View this item:" with no link, looks like something is missing there.

This is the same for comments which appear in the feed.
activity-stream.png activity-stream.png - 239KB

updated by @ultrajam: 07/06/14 04:58:25AM
SteveX
@ultrajam
07/06/14 04:46:29AM
2,587 posts

Jamroom.net profile feeds


Using Jamroom

Also, comments/now followings which appear in the feed are missing their title, seen here on my feed:
vienna-ultrajam-feed.png vienna-ultrajam-feed.png - 209KB

updated by @ultrajam: 07/06/14 04:52:03AM
SteveX
@ultrajam
07/06/14 04:45:22AM
2,587 posts

Jamroom.net profile feeds


Using Jamroom

The feeds in my reader (Vienna) dont have a title, also the link for the feed title leads to a "No data found" page:
https://www.jamroom.net/feed/action/www.jamroom.net

Edit: just refreshed the feeds and now leads to https://www.jamroom.net

The Jamroom network:

vienna-jrnetwork-feed.png vienna-jrnetwork-feed.png - 230KB

updated by @ultrajam: 08/11/14 02:57:04PM
  148