Subtle changes, bugs and feedback

Posted on
Page
of 312
  • It's been over 5 months! Literally unbrowsable.

    Oops. Need to waste more time on hear clearly :p

    Possibly just needs an abbreviation
    Velocio seems to agree:

    Great minds ...

  • Need to waste more time on hear clearly

    What did you say? :)

  • Great thanks..

    this is the URL:

    https://docs.google.com/spreadsheets/d/e/2PACX-1vQWL_CvvG2N838ZDEaBBQRmxW5rQi9nKgO5qlPVJ3QfbR0G6BagZ0gXevXhFRtzeznl2oOHb82RneOj/pubhtml?gid=0&single=true
    

    This is the embed code:

    <iframe src="https://docs.google.com/spreadsheets/d/e/2PACX-1vQWL_CvvG2N838ZDEaBBQRmxW5rQi9nKgO5qlPVJ3QfbR0G6BagZ0gXevXhFRtzeznl2oOHb82RneOj/pubhtml?gid=0&amp;single=true&amp;widget=true&amp;headers=false"></iframe>
    
  • Fixed the numbers problem.

    Will slowly appear for people, though you can force refresh to see it sooner.

  • It appears that I can make Google Sheets embedding work... initial results are positive.

    I'll do some further testing before I inflict it upon the world.

  • But you broke.


    2 Attachments

    • IMG_5645.PNG
    • IMG_5646.PNG
  • Great, thank you!

  • How is it broke?

    You can hover over the formatted numbers to see the precise numbers.

  • I look @hippy first post every evening to fall asleep but not working on apple phone now. Very odd. Just now one intermittent where it did work.

  • How is it broke?

    Comment count in the user profile no longer links to their comment stream if the comment count is abbreviated.

  • Ah nice.

    An easy fix... but one for the morning.

  • What's going on here? I replied to your post, but my post says I replied to fussballclub


    1 Attachment

    • Clipboard01.jpg
  • hippy breaks everything, anyway, that's nothing new. :)

  • The links have been restored to the abbreviated numbers in the profiles.

    Though of course... caching... so you may need to force refresh or empty the cache to see the changes.

    Basically I needed to adjust the code from this:

    	$('.list-stats span[stat]').each(
    		function(i, el) {
    			num = parseInt(el.getAttribute("stat"));
    			if (num > 999) {
    				el.title = el.parentElement.innerText;
    				el.innerHTML = nFormatter(num, 2)
    			}
    		}
    	);
    

    To this:

    	$('.list-stats span[stat]').each(
    		function(i, el) {
    			num = parseInt(el.getAttribute("stat"));
    			if (num < 1000) {
    				return;
    			}
    			// Get the li text for the tooltip, i.e. "1,008 comments"
    			tooltip = el.parentElement.innerText;
    			// There may be a link within the stat, i.e. as a search to the items
    			while (el.hasChildNodes() && el.childNodes[0].nodeType == 1) {
    				el = el.childNodes[0];
    			}
    			el.title = tooltip;
    			el.innerText = nFormatter(num, 2);
    		}
    	);
    
  • I can't seem to click on a users number of comments to see a full list of all their comments anymore?

  • Force refresh your browser to fetch the latest JavaScript. :)

  • Unable to post pics. Nothing happens after selecting the image. New Firefox?

  • New Firefox?

    Probably, same problem here on Firefox 57.0 64-bit/Windows


    1 Attachment

    • chequered.png
  • That attached image didn't show up* while composing the post, but did once I'd actually posted. That was using drag-and-drop, not dialogue box selection. Dialogue box method doesn't work.

    *but it seems to do so more often than not, so that looks like a glitch rather than a bug

  • I'm also consistently getting a server error if I drag and drop more one or more attachments (together or separately) into the composition window and then delete one or more of them before posting.

  • OK, I will try drag and drop, that might do for now

  • This is all on the new Firefox right?

    I shall test again... but it may be that Firefox would appreciate the bug report more than I.

  • Yes, I posted a pic in photocomp on Saturday afternoon. Today I can't post in members only (I've got round it by using Microsoft Edge)

  • Post a reply
    • Bold
    • Italics
    • Link
    • Image
    • List
    • Quote
    • code
    • Preview
About

Subtle changes, bugs and feedback

Posted by Avatar for Velocio @Velocio

Actions