Summary of the problem
It looks like fapnip is using a neat trick to render the chess board, but that trick doesn't work in the current version of the EOS.
Details of the problem
fapnip is using the CSS class '
TextBubble_continueIndicator__sXRN-
' to overlay the chess pieces over the board background. Unfortunately, that CSS class doesn't exist any more in the current version of the EOS, but there is the equivalent CSS class '
_continueIndicator_1figp_30
' that does work. I tried this on Firefox with debug panel and modified the class reference, and that fixes the problem... until you move a piece and the board is recreated by the script.
Within the script of the tease, the function
renderBoard()
contains:
var txt =
// '<span class=\"eosActivitySidebar\">TestBar</span>' +
'<span class=\"TextBubble_continueIndicator__sXRN- eosContainer\" style=\"font-size:100%;text-align:left\">' +
// Display some inivisible blocks to size the say bubble
'<span style=\"font-size:' + bds.bfont + 'px;color:rgba(0,0,0,0)\">'
+ brs(bds.mtop) + r2.join(b) + // To size
'</span>' +
// Display chess board layer
'<span class=\"eosPreloaderOverlay\" style=\"font-size:100%\">' +
'<span class=\"eosContainer\" style=\"font-size:100%\">' +
'<span class=\"TextBubble_continueIndicator__sXRN- eosPreloaderOverlay\" style=\"font-size:' + bds.bfont + 'px\">' +
brs(bds.ptop) + r.join(b) +
'</span>' +
'</span>' +
'</span>' +
// Display chess piece layers, mask layer, row/column label layers, etc.
layers.reduce(function (r, l) {
r.push(
'<span class=\"eosPreloaderOverlay\" style=\"font-size:100%\">' +
'<span class=\"eosContainer\" style=\"font-size:100%\">' +
'<span class=\"TextBubble_continueIndicator__sXRN- eosPreloaderOverlay\" style=\"font-size:' + bds.bfont + 'px\">' +
brs(bds.ptop) + l +
'</span>' +
'</span>' +
'</span>')
return r
}, []).join('')
'</span>'
Solution to the problem
If all three occurrences of '
TextBubble_continueIndicator__sXRN-
' are replaced with '
_continueIndicator_1figp_30
', that should solve the problem (at least for now, unless further EOS changes modify the class name again).
Since fapnip has sadly left Milovana, he may not be available to patch the tease, so the only other option would be for another author to download the tease source, do a quick search and replace, and upload it as a new tease.