1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-11 17:14:42 +02:00

AdminUI: Modal option added to adminMenu navigation. Fixed #uiAlert - was not functioning as intended.

This commit is contained in:
Cameron
2015-07-11 14:07:04 -07:00
parent 9c6cfc0b86
commit c4fa4d234c
6 changed files with 51 additions and 11 deletions

View File

@@ -541,7 +541,7 @@ echo "</head>
<body".$body_onload.">\n";
echo getModal();
// echo getAlert();
echo getAlert();
function getModal($caption = '', $type='')
{
@@ -575,11 +575,11 @@ echo getModal();
function getAlert($caption='')
{
return '<div id="uiAlert" class="alert alert-block alert-success hide fade in" style="box-shadow:0px 15px 8px #000;width:300px;position:absolute;left:40%;right:40%;top:15%;z-index:10000">
<!-- rest of alert code goes here --> some
Some text goes here and there and everywhere.
</div>';
// style="box-shadow:0px 15px 8px #000;width:300px;position:absolute;left:40%;right:40%;top:15%;z-index:10000"
return '<div id="uiAlert" class="notifications center"><!-- empty --></div>';
}