Skip to content
  • 18 Votes
    10 Posts
    220 Views
    julianJ

    @[email protected] Thanks for the reply, I'm glad these discussions are taking place.

    I independently settled on the approach advocated in that link you shared — given any Note ID, I traverse up the chain until I find the root, and that becomes the original topic post.

    If there were some sort of standard for defining a topic ID, I would use that, although I think at present there are no consistent applications.

    FEP-400e explicitly mentions forum topics, but I am not entirely certain whether this is something I'd want to follow as topic themselves don't have an "owner".

  • Replies stripping @mention

    Unsolved Technical Support
    4
    1 Votes
    4 Posts
    370 Views
    barisB

    This is should be fixed on master.

  • 0 Votes
    2 Posts
    328 Views
    PitaJP

    Check the settings for the mentions plugin and check privileges settings.

  • 1 Votes
    6 Posts
    3k Views
    frissdiegurkeF

    @julian said:

    I imagine if href is missing, this.href would be undefined, no? smile

    No. 😛

    I was surprised that it's been an empty string that got checked instead of undefined too, but it seems I'm to adapted to jQuery ^^

    This is because you use the DOM-element rather than jQuery to get the href:
    document.createElement('a').href === ''
    $('<a></a>').attr('href') === undefined