Files
Disco/Disco.Web/Views/InitialConfig/RestartWebApp.cshtml
T
Gary Sharp 201acc1976 Feature #43: Specify Admins at Initial Config
Disco Administrators can be specified during the Initial Configuration
2014-04-13 23:17:01 +10:00

35 lines
1004 B
Plaintext

@{
ViewBag.Title = null;
}
<h1>@CommonHelpers.Breadcrumbs("Initial Configuration > Starting Disco")</h1>
<div id="dialog" title="Please Wait" style="padding-top: 30px;">
<h2><span class="ajaxLoading" style="margin-right: 15px;"></span>Starting Disco</h2>
<div style="padding-left: 31px;">Please wait while the Disco environment is initialized</div>
</div>
<script>
(function () {
$(function () {
$('#dialog').dialog({
autoOpen: true,
draggable: false,
modal: true,
resizable: false,
width: 400,
height: 150,
closeOnEscape: false
}).closest('.ui-dialog').find('.ui-dialog-titlebar-close').hide();
var refresh = function () {
window.location.href = '/Config';
}
window.setTimeout(refresh, 2000);
$('#layout_Page').css('minHeight', '420px');
});
})();
</script>