1
1
mirror of https://github.com/aelve/guide.git synced 2024-12-26 14:23:14 +03:00

Expand notes when linked directly to item

This commit is contained in:
Artyom 2016-04-20 21:24:04 +03:00
parent d43aa8137f
commit ecc18fe0db

View File

@ -314,6 +314,10 @@ expandHash =
if (hash.slice(0,12) == "#item-notes-") { if (hash.slice(0,12) == "#item-notes-") {
itemId = hash.slice(12); itemId = hash.slice(12);
expandItemNotes(itemId); expandItemNotes(itemId);
} else
if (hash.slice(0,6) == "#item-") {
itemId = hash.slice(6);
expandItemNotes(itemId);
} }
|] |]