inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,017
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Mar 22, 2022 6:07:42 GMT -8
Wormopolis, I tested this out on my forum. I wanted to have the bar present with the next level placement. So, I set "Current Rank Placement" to "none." It continued to show the current rank placement in the mini profile by the bar. Is there anything that would have caused that to happen? See the CSS workaround posted above to get there. Wormopolis: There's a bug in the coding since an empty array would still evaluate to "truthy" making that option not work as intended (usually an input changed from single to multiple accepted answers is the culprit) if (wormocodes_currLevel) { /* wormocodes_currLevel is an array so always "truthy" */ if (wormocodes_currLevel=='below') { LU_div.append($('<font>'+(wormocodes_currLevelStats ? poptitle : poptitle2)+'</font><br>')); } else { // LU_div.find('table.bartable').before($('<br><font>'+(wormocodes_currLevelStats ? poptitle : poptitle2)+'</font>')); LU_div.find('font').first().after($('<br><font>'+(wormocodes_currLevelStats ? poptitle : poptitle2)+'</font>')); } }
|
|