Forum Activity for @ultrajam

SteveX
@ultrajam
03/09/15 01:35:49PM
2,584 posts

Issue tracker missing an item


Jamroom Developers

On the Feature Requests tab I'm seeing duplicate items on page 2 (they already appeared on page 1).
SteveX
@ultrajam
03/09/15 01:23:29PM
2,584 posts

Issue tracker missing an item


Jamroom Developers

Page 2 duplicates items:
tracker-pagination-2.png tracker-pagination-2.png - 85KB

updated by @ultrajam: 03/09/15 01:23:47PM
SteveX
@ultrajam
03/09/15 01:22:16PM
2,584 posts

Issue tracker missing an item


Jamroom Developers

Created another, and now I'm seeing the pagination problem again.
tracker-pagination-1.png tracker-pagination-1.png - 80KB

updated by @ultrajam: 03/09/15 01:23:07PM
SteveX
@ultrajam
03/09/15 09:10:45AM
2,584 posts

Jamroom.net code highlighter


Jamroom Developers

Ok, it isn't really a worry :)

The comments don't break in the version of codemirror I used for the ujEditorCodeMirror module. I needed to use an up-to-date version and the core version of codemirror was a little older. So maybe it will be fixed in a newer version of codemirror.
SteveX
@ultrajam
03/09/15 08:54:24AM
2,584 posts

Angry smiley breaks a forum post


Jamroom Developers

^^^ the vengeful angry smiley does not appear, and takes all the good text with him :(
SteveX
@ultrajam
03/09/15 08:52:26AM
2,584 posts

Angry smiley breaks a forum post


Jamroom Developers

X-(

I can see why
updated by @ultrajam: 04/09/15 03:35:57PM
SteveX
@ultrajam
03/09/15 08:51:02AM
2,584 posts

Issue tracker missing an item


Jamroom Developers

Created another item and my missing item has reappeared.

Most odd!
SteveX
@ultrajam
03/09/15 07:29:19AM
2,584 posts

Issue tracker missing an item


Jamroom Developers

There seems to be something wrong with the issue tracker. One of my Feature Requests is not listed, and one is repeated twice.

I have 11 feature requests, the 11th (which is a completed request and is on Page 2) is a repeat of the 9th.

I can't see anything about the items in the datastore which would cause any problems.
updated by @ultrajam: 04/20/15 03:16:50PM
SteveX
@ultrajam
03/08/15 03:05:51PM
2,584 posts

Jamroom.net code highlighter


Jamroom Developers

In this here forum, the code highlighter breaks after an apostrophe in a php comment. It fixes itself after an apostophe (in a following comment)

code-hilite-commented-out.png code-hilite-commented-out.png - 163KB

updated by @ultrajam: 04/20/15 03:15:48PM
SteveX
@ultrajam
03/08/15 02:47:33PM
2,584 posts

automatic one reloads function, like facebook


Design and Skin Customization

Are you using something from this?
http://desandro.github.io/masonry/demos/infinite-scroll.html

<script>
  $(function(){
    
    var $container = $('#container');
    
    $container.imagesLoaded(function(){
      $container.masonry({
        itemSelector: '.box',
        columnWidth: 100
      });
    });
    
    $container.infinitescroll({
      navSelector  : '#page-nav',    // selector for the paged navigation 
      nextSelector : '#page-nav a',  // selector for the NEXT link (to page 2)
      itemSelector : '.box',     // selector for all items you'll retrieve
      loading: {
          finishedMsg: 'No more pages to load.',
          img: 'http://i.imgur.com/6RMhx.gif'
        }
      },
      // trigger Masonry as a callback

      function( newElements ) {
        // hide new items while they are loading
        var $newElems = $( newElements ).css({ opacity: 0 });
        // ensure that images load before adding to masonry layout
        $newElems.imagesLoaded(function(){
          // show elems now they're ready
          $newElems.animate({ opacity: 1 });
          $container.masonry( 'appended', $newElems, true ); 
        });
      }
    );
    
  });
</script>

updated by @ultrajam: 03/08/15 02:59:48PM
  108