Changes between Initial Version and Version 9 of Ticket #6647


Ignore:
Timestamp:
Oct 30, 2017, 11:14:32 PM (6 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6647

    • Property Owner changed from Dav Glass to Ryan J Ollos
    • Property Priority changed from low to high
    • Property Status changed from new to accepted
    • Property Summary changed from Voting gets unnecessarily caught by FlashBlock extensions to [Patch] Voting gets unnecessarily caught by FlashBlock extensions
  • Ticket #6647 – Description

    initial v9  
    1 I've got a FlashBlock script that replaces all <object> tags with a "blocked" element. Even though this hack just uses HTML and JS (although the JS seems superflou superfluous) it gets blocked because of the <object> tag, which is normally used for Flash and the like.
     1I've got a FlashBlock script that replaces all `<object>` tags with a "blocked" element. Even though this hack just uses HTML and JS (although the JS seems superfluous) it gets blocked because of the `<object>` tag, which is normally used for Flash and the like.
    22
    33To fix it I just replaced
    4 {{{
     4{{{#!js
    55add_ctxtnav(req, tag.span(tag.object(ul), id='fivestarvotes', title=title, class_=className))
    66}}}
     7
    78with
    8 {{{
     9{{{#!js
    910add_ctxtnav(req, tag.span(ul, id='fivestarvotes', title=title, class_=className))
    1011}}}
    11 in __init.py__
     12
     13in `__init.py__`