diff options
Diffstat (limited to 'app/view/stdpage.php')
-rw-r--r-- | app/view/stdpage.php | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/app/view/stdpage.php b/app/view/stdpage.php index 99cbb25..90e25d8 100644 --- a/app/view/stdpage.php +++ b/app/view/stdpage.php @@ -145,6 +145,12 @@ require_once "view/settings.php"; $("#noticeModal").modal("show"); }); </script> + <?php } else if (getAutoModal() != "") { ?> + <script type="text/javascript"> + $(window).on('load', function () { + $("<?=getAutoModal()?>").modal("show"); + }); + </script> <?php } ?> <script type="text/javascript"> @@ -195,7 +201,7 @@ require_once "view/settings.php"; <span class="icon-bar"></span> </button> - <a href="<?=ar()?>/" class="navbar-brand"> + <a href="<?=ar()?>/" class="navbar-brand" title="Dashboard"> <span class="glyphicon glyphicon-pencil"></span> Scrott </a> </div> @@ -205,12 +211,12 @@ require_once "view/settings.php"; <p class="navbar-text navbar-right"><i>Not Logged In </i></p> <?php } else { ?> <ul class="nav navbar-nav"> - <li><a href="<?=ap()?>"><span class="glyphicon glyphicon-refresh"></span></a></li> - <li><a href="<?=ar()?>/groups"><span class="glyphicon glyphicon-th"></span></a></li> - <li><a href="<?=ar()?>/pads"><span class="glyphicon glyphicon-edit"></span></a></li> + <li><a href="<?=ap()?>" title="Reload Content"><span class="glyphicon glyphicon-refresh"></span></a></li> + <li><a href="<?=ar()?>/groups" title="My Groups"><span class="glyphicon glyphicon-th"></span></a></li> + <li><a href="<?=ar()?>/pads" title="My Pads"><span class="glyphicon glyphicon-edit"></span></a></li> <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> + <a href="#" class="dropdown-toggle" title="Quickjump" data-toggle="dropdown" aria-expanded="false"> <?=getPageName()?> <span class="caret"></span> </a> @@ -222,7 +228,7 @@ require_once "view/settings.php"; </li> <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> + <a href="#" class="dropdown-toggle" title="Create Something" data-toggle="dropdown" aria-expanded="false"> <span class="glyphicon glyphicon-plus"></span> <span class="caret"></span> </a> @@ -240,7 +246,7 @@ require_once "view/settings.php"; <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> + <a href="#" class="dropdown-toggle" title="Options" data-toggle="dropdown" aria-expanded="false"> <?php if (\user::getCurrent()->admin == 1) { ?> <span class="glyphicon glyphicon-sunglasses"></span> <?php } ?> |