Merge pull request #5240 from osmandapp/JsonContentsParser
Json contents parser
This commit is contained in:
commit
a7206a07f6
1 changed files with 19 additions and 2 deletions
|
@ -27,7 +27,9 @@ import net.osmand.plus.OsmandApplication;
|
||||||
import net.osmand.plus.OsmandSettings;
|
import net.osmand.plus.OsmandSettings;
|
||||||
import net.osmand.plus.R;
|
import net.osmand.plus.R;
|
||||||
import net.osmand.plus.wikivoyage.WikivoyageBaseDialogFragment;
|
import net.osmand.plus.wikivoyage.WikivoyageBaseDialogFragment;
|
||||||
|
|
||||||
import net.osmand.plus.wikivoyage.WikivoyageWebViewClient;
|
import net.osmand.plus.wikivoyage.WikivoyageWebViewClient;
|
||||||
|
|
||||||
import net.osmand.plus.wikivoyage.data.WikivoyageArticle;
|
import net.osmand.plus.wikivoyage.data.WikivoyageArticle;
|
||||||
import net.osmand.plus.wikivoyage.data.WikivoyageLocalDataHelper;
|
import net.osmand.plus.wikivoyage.data.WikivoyageLocalDataHelper;
|
||||||
import net.osmand.util.Algorithms;
|
import net.osmand.util.Algorithms;
|
||||||
|
@ -66,10 +68,25 @@ public class WikivoyageArticleDialogFragment extends WikivoyageBaseDialogFragmen
|
||||||
"openContent(title);" +
|
"openContent(title);" +
|
||||||
"window.location.hash = id;}\n" +
|
"window.location.hash = id;}\n" +
|
||||||
"function openContent(id) {\n" +
|
"function openContent(id) {\n" +
|
||||||
"var doc = document.getElementById(id).parentElement;\n" +
|
" var doc = document.getElementById(id).parentElement;\n" +
|
||||||
" doc.classList.toggle(\"active\");\n" +
|
" doc.classList.toggle(\"active\");\n" +
|
||||||
" var content = doc.nextElementSibling;\n" +
|
" var content = doc.nextElementSibling;\n" +
|
||||||
"content.style.display = \"block\";\n" +
|
" content.style.display = \"block\";\n" +
|
||||||
|
" collapseActive(doc);" +
|
||||||
|
"}" +
|
||||||
|
"function collapseActive(doc) {" +
|
||||||
|
" var coll = document.getElementsByTagName(\"H2\");" +
|
||||||
|
" var i;" +
|
||||||
|
" for (i = 0; i < coll.length; i++) {" +
|
||||||
|
" var item = coll[i];" +
|
||||||
|
" if (item != doc && item.classList.contains(\"active\")) {" +
|
||||||
|
" item.classList.toggle(\"active\");" +
|
||||||
|
" var content = item.nextElementSibling;" +
|
||||||
|
" if (content.style.display === \"block\") {" +
|
||||||
|
" content.style.display = \"none\";" +
|
||||||
|
" }" +
|
||||||
|
" }" +
|
||||||
|
" }" +
|
||||||
"}</script>"
|
"}</script>"
|
||||||
+ "</body></html>";
|
+ "</body></html>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue