Dynaview: Fix crash

wikitext-via-macros
Jermolene 2019-03-16 13:25:45 +00:00
rodzic f4fe254038
commit a89991cc46
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -239,7 +239,7 @@ function findTopmostTiddler() {
return {
element: topmostElement,
offset: -topmostElementTop,
title: topmostElement.getAttribute("data-tiddler-title")
title: topmostElement ? topmostElement.getAttribute("data-tiddler-title") : null
};
}