2011-11-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* operation/agentes/estado_generalagente.php include/javascript/jquery.ui.dialog.js general/header.php: Fixed ui_dialog when graphs are displayed behind. Fixes: #3441058 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5214 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
61eeef9a81
commit
91c4279ace
|
@ -1,3 +1,12 @@
|
|||
2011-11-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* operation/agentes/estado_generalagente.php
|
||||
include/javascript/jquery.ui.dialog.js
|
||||
general/header.php: Fixed ui_dialog when graphs are displayed
|
||||
behind.
|
||||
|
||||
Fixes: #3441058
|
||||
|
||||
2011-11-30 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* include/graphs/functions_gd.php: Fixed rounded corners
|
||||
|
|
|
@ -203,6 +203,15 @@ if ($config["metaconsole"] == 0){
|
|||
<script language="javascript" type="text/javascript">
|
||||
/* <![CDATA[ */
|
||||
$(document).ready (function () {
|
||||
/* Temporal fix to hide graphics when ui_dialog are displayed */
|
||||
$("#yougotalert").click(function () {
|
||||
$("#agent_access").css("display", "none");
|
||||
});
|
||||
$("#ui_close_dialog_titlebar").click(function () {
|
||||
alert("LOLOLO");
|
||||
$("#agent_access").css("display","");
|
||||
});
|
||||
|
||||
<?php if ($msg_cnt > 0): ?>
|
||||
$("#yougotmail").pulsate ();
|
||||
<?php endif; ?>
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -55,7 +55,7 @@ if (! check_acl ($config["id_user"], $agent["id_grupo"], "AR") && !$is_extra) {
|
|||
echo '<div style="height: 10px"> </div>';
|
||||
|
||||
//Floating div
|
||||
echo '<div style="float:right; width:320px; padding-top:11px;">';
|
||||
echo '<div id="agent_access" style="float:right; width:320px; padding-top:11px;">';
|
||||
|
||||
if ($config["agentaccess"]){
|
||||
echo '<b>'.__('Agent access rate (24h)').'</b><br />';
|
||||
|
|
Loading…
Reference in New Issue