diff --git a/src/resources/js/docs-api.js b/src/resources/js/docs-api.js index eaa47e9..e013940 100644 --- a/src/resources/js/docs-api.js +++ b/src/resources/js/docs-api.js @@ -168,7 +168,7 @@ function beginRenderingInto($tpl, moduleID, module) { let { pkg, _ } = splitTypeName(module.structure.type_name); $('.nonstandard-project-link', $tpl).attr('href', module.repo).text(module.repo); $('.nonstandard-package-path', $tpl).text(pkg); - $('.nonstandard-notice', $tpl).prepend(nonStandardFlag).show(); + $('.nonstandard-notice', $tpl).css('display', 'block').prepend(nonStandardFlag); // for some reason show() dosen't work } var $repoName = $('').text(stripScheme(module.repo));