Files
Disco/Disco.Web/Views/InitialConfig/RestartWebApp.cshtml
T
2013-02-28 17:15:46 +11:00

35 lines
998 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 = '/';
}
window.setTimeout(refresh, 2000);
$('#layout_Page').css('minHeight', '420px');
});
})();
</script>