/******/ (() => { // webpackBootstrap /******/ var __webpack_modules__ = ({ /***/ 476: /***/ ((module) => { "use strict"; /* # ----------------------------------------------------------------------------- # ~/js/adapter/adapter.js # Provides an empty object for later loaded adapter objects # # Product/Info: # https://jekyll.one # # Copyright (C) 2023 Juergen Adams # # J1 Theme is licensed under MIT License. # See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md # ----------------------------------------------------------------------------- */ // ----------------------------------------------------------------------------- // ESLint shimming // ----------------------------------------------------------------------------- /* eslint indent: "off" */ /* eslint no-unused-vars: "off" */ /* eslint no-undef: "off" */ // ----------------------------------------------------------------------------- module.exports = function (j1, window) { return { // ------------------------------------------------------------------------- // _init_ // Global initializer for the adapter object // ------------------------------------------------------------------------- _init_: function () { return; } // END _init_ }; // END return }(j1, window); /***/ }), /***/ 253: /***/ (() => { /* # ----------------------------------------------------------------------------- # ~/200_theme_js/js/adoc_result_viewer/view_results.js # Provides JavaScript functions displaying results for Asciidoctor # example block # # Product/Info: # https://jekyll.one # # Copyright (C) 2023 Juergen Adams # # J1 Theme is licensed under MIT License. # See: https://github.com/jekyll-one-org/j1-template/blob/main/LICENSE.md # ----------------------------------------------------------------------------- # TODO: Improve lanuage settings # TODO: Improve auto-hide functionality for the results block # ----------------------------------------------------------------------------- */ // ----------------------------------------------------------------------------- // ESLint shimming // ----------------------------------------------------------------------------- /* eslint indent: "off" */ /* global $ */ // ----------------------------------------------------------------------------- var timeoutHandle; // var language = 'de'; var language = document.documentElement.lang; function toggle_result_block(result_block) { window.clearTimeout(timeoutHandle); // Clear the timeout object result_block.prev().toggleClass('stacked'); result_block.toggle(); // jadams: Improve auto-hide functionality for the results block // // timeoutHandle = window.setTimeout(function () { // result_block.hide(); // }, 5000); } function insert_result_links() { $('.result').each(function (idx, node) { var view_result_link; var result_block = $(node); var title_div = result_block.prev().find('.title'); if (language == 'en') { view_result_link = $('