Files
UnrealEngineUWP/Engine/Plugins/Experimental/PythonScriptPlugin/SphinxDocs/themes/ue4api/layout.html
Ryan Vance 7c51ff94af Merging //UE4/Dev-Main to Dev-VR (//UE4/Dev-VR)
CL 1 of 8
#rb integration

[CL 4748712 by Ryan Vance in Dev-VR branch]
2019-01-17 18:54:05 -05:00

33 lines
810 B
HTML

{#
ue4api/layout.html
~~~~~~~~~~~~~~~~~~~
Sphinx layout template for the UE4 API theme.
Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#}
{%- extends "classic/layout.html" %}
{% if theme_collapsiblesidebar|tobool %}
{% set script_files = script_files + ['_static/sidebar.js'] %}
{% endif %}
{% block header %}
<div id="head"></div>
<script>
$(document).ready(function () {
$.ajax({
url: "https://www.unrealengine.com/epic-games-header?useServerUrl=true&lang=en-US",
context: document.body
}).done(function (data) {
$("#head").html(data);
}).fail(function( jqXHR, textStatus, errorThrown ) {
});
});
window._egNavAfterConfigSet = function() {
_epicGamesNav.hideSignIn = true;
_epicGamesNav.hideLocale = true;
};
</script>
{% endblock %}