Closed Sieboldianus closed 3 years ago
Fixed one issue by adding:
function calcAgeDateString(date) {
if ( typeof date !== 'number' )
return;
var str = '';
if (date.length) {
...
I think the 2nd issue is caused by resizing the window above/below 3000px wide. You can fix it by installing the very latest version of JScript Panel here:
https://github.com/marc2k3/foo_jscript_panel/releases
Then replace this code at line 41 of georgia-main.js
g_tooltip = window.CreateTooltip('Segoe UI', scaleForDisplay(15));
g_tooltip.setMaxWidth(scaleForDisplay(300));
g_tooltip.text = ''; // just in case
with
if (!g_tooltip) {
g_tooltip = window.CreateTooltip();
}
window.SetTooltipFont('Segoe UI', scaleForDisplay(15));
g_tooltip.SetMaxWidth(scaleForDisplay(300));
g_tooltip.text = ''; // just in case
The second issue should be fixed out of the box in the new beta. Not sure what was causing your first issue, but let me know if it's still a problem if you can.
I just installed this theme, but I'll get js scrashes, the JPanel turns red with a white "Error" showing.
This happens e.g. when I click on text (artist, title), with:
.. at other times, I get:
Anything I possibly did wrong?