SAAS-940: Provide usability hints to user
Fixed bug where sometimes the hint would not show up
This commit is contained in:
parent
e07d62b020
commit
6a01205034
|
@ -72,12 +72,9 @@ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
|
|||
|
||||
<div class="wrapper" id="content">
|
||||
<?php
|
||||
$hint = Application_Common_UsabilityHints::getUsabilityHint();
|
||||
if ($hint != "") { ?>
|
||||
<div class="usability_hint"><?php echo $hint; ?></div>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
$hint = Application_Common_UsabilityHints::getUsabilityHint(); ?>
|
||||
|
||||
<div class="usability_hint" <?php if ($hint == "") { echo "style='display:none'"; } ?>><?php echo $hint; ?></div>
|
||||
|
||||
<?php echo $this->layout()->content ?></div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue