Skip to content

Is NTFY working properly on iOS?

Bugs
This topic was forked from Bug Report phenomlab

Related Topics
  • Layout Issues/Transparency

    Solved Bugs
    5
    2
    2 Votes
    5 Posts
    155 Views
    @phenomlab said in Layout Issues/Transparency: Does it work properly now? Yes, it does
  • 3 Votes
    5 Posts
    432 Views
    @crazycells Agreed. It takes a more sensible approach. Nobody ever upvotes the first post - it’s usually much further down as the conversation progresses.
  • problem with search page and copyright in footer

    Solved Bugs
    13
    1
    6 Votes
    13 Posts
    536 Views
    @phenomlab yes, search page is fixed thanks
  • nodebb error logs

    Bugs
    6
    2
    4 Votes
    6 Posts
    583 Views
    I just wanted to ask because I don’t have much knowledge about the new installation. Thank you for the explanatory answer.
  • Loading Image Problem

    Bugs
    24
    3
    6 Votes
    24 Posts
    2k Views
    Thank you Mark.
  • Nodebb 3.2.2

    Bugs
    27
    1
    11 Votes
    27 Posts
    2k Views
    @crazycells yes, I’ve just seen that and modified the post. It seems to only happen if you have a space between the “greater than” symbol and the actual text. Clearly a markdown thing.
  • Nodebb 3.2.0

    Bugs
    20
    1
    2 Votes
    20 Posts
    1k Views
    @crazycells yes, I’m aware of that. Need to fix EDIT- fixed. Caused by the same CSS that is used to absolutely position the “verified” group badge in the posts view. Amended this CSS so that is specifically targets the post stream as below li[component="post"] a[href*="/groups/verified"] { position: absolute !important; left: 8px; z-index: 2; margin-top: 1px; border-radius: 999px !important; line-height: 14px; display: block; height: 22px; margin-left: 0px !important; }
  • [SOLVED] Fancybox doesn't work in chat

    Bugs
    3
    1
    4 Votes
    3 Posts
    405 Views
    EDIT: Sorry all, I found a bug that causes Fancybox to be bound twice. Please remove the original functions I provided (the original post has been updated for anyone who did not use the original code and is new here) and replace with just this block // Chat fancybox - fires when chat module loaded and AJAX calls new chat $(document).ready(function() { $(window).on('action:chat.loaded', function(data) { this.$('img').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { var newHref = $(this).attr("src"); $(this).wrap("<a class='fancybox' href='" + newHref + "'/>"); $('a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]').addClass("noanimate"); data.preventDefault(); // Strip out the images contained inside blockquotes as this looks nasty :) $('blockquote img').remove(); }); Fancybox.bind( 'a[href*=".jpg"], a[href*=".jpeg"], a[href*=".png"], a[href*=".gif"], a[href*=".webp"]', { groupAll: true, } ); }); });