(String html)
| 43 | } |
| 44 | |
| 45 | protected void displayHtml(String html) { |
| 46 | html = template.replace("%text%", html) |
| 47 | .replace("%theme_path%", Config.getTheme().getUrl().toExternalForm()); |
| 48 | |
| 49 | //Matcher.LOGGER.debug(html); |
| 50 | webView.getEngine().loadContent(html); |
| 51 | } |
| 52 | |
| 53 | protected void select(String anchorId) { |
| 54 | addWebViewTask(() -> webView.getEngine().executeScript("var newAnchor = document.getElementById('"+anchorId+"');" |
no test coverage detected