Next iframe V6 fixes reminder list

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: Next iframe V6 fixes reminder list

Re: Next iframe V6 fixes reminder list

by axew3 » Wed Jan 27, 2021 5:39 pm

TODO:

fix historyPushState bug

viewtopic.php?p=5047#p5047

Re: Next iframe V6 fixes reminder list

by axew3 » Tue Dec 01, 2020 10:14 pm

how to jump to #unread anchor (notification email link)

https://www.axew3.com/w3/forums/viewtop ... 4974#p4974

Re: Next iframe V6 fixes reminder list

by axew3 » Sat Nov 21, 2020 12:35 am

Re: Next iframe V6 fixes reminder list

by axew3 » Thu Nov 19, 2020 11:11 am

Re: Next iframe V6 fixes reminder list

by axew3 » Sat Oct 10, 2020 3:17 pm

There is bug i've find.
It this: when click done into an attachment on posts to download it, then you reload page, the iframe fail on resize ...
well it do not fail on resize, it will attempt to download the file again, that lead to an unwanted result.

to fix, this:

Code: Select all

// # short links?
if ( href.charAt(0) == '#' ){
will be switched to this:

Code: Select all

// # short links? download links?
if ( href.charAt(0) == '#' || href.indexOf('\./download\/file\.php') > -1 ){
 return;
}
the v5 iframe code overall_footer.html has been already updated based on this

Re: Next iframe V6 fixes reminder list

by axew3 » Thu Sep 24, 2020 10:07 am

Thank for your report, i will be over for 2.4.0 setup very soon and i will check all about this aspect

Top