56 lines
1.4 KiB
Smarty
56 lines
1.4 KiB
Smarty
{*
|
|
* 2022 ECSoft
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to dev.ecsoft@gmail.com so we can send you a copy immediately.
|
|
*
|
|
*
|
|
* @author ECSoft <dev.ecsoft@gmail.com>
|
|
* @copyright 2022 ECSoft
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of ECSoft
|
|
*}
|
|
<style>
|
|
#ecsgtmpro_debug {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
width: 600px;
|
|
max-height: 500px;
|
|
overflow-y: scroll;
|
|
z-index: 9999;
|
|
opacity: 1;
|
|
transition: margin 700ms;
|
|
}
|
|
#ecsgtmpro_debug_content {
|
|
margin-left: 0;
|
|
background: rgba(0,0,0,0.7);
|
|
padding: 3px;
|
|
}
|
|
#ecsgtmpro_debug_content pre{
|
|
color: #0f0;
|
|
font-size: 12px;
|
|
font-family: monospace;
|
|
margin: 0px;
|
|
border: 0;
|
|
border-bottom: 1px dashed #0f0;
|
|
}
|
|
</style>
|
|
<div id="ecsgtmpro_debug">
|
|
<div id="ecsgtmpro_debug_content">
|
|
{if (!$isAjax)}
|
|
{foreach $debugStack as $message}
|
|
<pre>
|
|
{$message nofilter}
|
|
</pre>
|
|
{/foreach}
|
|
{/if}
|
|
</div>
|
|
</div> |