forked from Wavyzz/dolibarr
Fix conflict with the div #dialog used for popup cut and paste of
address.
This commit is contained in:
@@ -173,7 +173,8 @@ class box_actions extends ModeleBoxes
|
||||
{
|
||||
global $langs, $conf;
|
||||
parent::showBox($this->info_box_head, $this->info_box_contents);
|
||||
if ($conf->global->SHOW_DIALOG_HOMEPAGE) {
|
||||
if (! empty($conf->global->SHOW_DIALOG_HOMEPAGE))
|
||||
{
|
||||
$actioncejour=false;
|
||||
$contents=$this->info_box_contents;
|
||||
$nblines=count($contents);
|
||||
@@ -182,7 +183,7 @@ class box_actions extends ModeleBoxes
|
||||
$bcx[1] = 'class="box_impair"';
|
||||
if ($contents[0][0]['text'] != $langs->trans("NoActionsToDo"))
|
||||
{
|
||||
print '<div id="dialog" title="'.$nblines." ".$langs->trans("ActionsToDo").'">';
|
||||
print '<div id="dialogboxaction" title="'.$nblines." ".$langs->trans("ActionsToDo").'">';
|
||||
print '<table width=100%>';
|
||||
for ($line=0, $n=$nblines; $line < $n; $line++)
|
||||
{
|
||||
@@ -219,11 +220,11 @@ class box_actions extends ModeleBoxes
|
||||
if ($actioncejour)
|
||||
{
|
||||
print '<script>';
|
||||
print '$( "#dialog" ).dialog({ autoOpen: true });';
|
||||
if ($conf->global->SHOW_DIALOG_HOMEPAGE > 1)
|
||||
print '$("#dialogboxaction").dialog({ autoOpen: true });';
|
||||
if ($conf->global->SHOW_DIALOG_HOMEPAGE > 1) // autoclose after this delay
|
||||
{
|
||||
print 'setTimeout(function(){';
|
||||
print '$("#dialog").dialog("close");';
|
||||
print '$("#dialogboxaction").dialog("close");';
|
||||
print '}, '.($conf->global->SHOW_DIALOG_HOMEPAGE*1000).');';
|
||||
}
|
||||
print '</script>';
|
||||
@@ -231,7 +232,7 @@ class box_actions extends ModeleBoxes
|
||||
else
|
||||
{
|
||||
print '<script>';
|
||||
print '$( "#dialog" ).dialog({ autoOpen: false });';
|
||||
print '$("#dialogboxaction").dialog({ autoOpen: false });';
|
||||
print '</script>';
|
||||
}
|
||||
}
|
||||
|
||||
@@ -940,10 +940,11 @@ function confirmConstantAction(action, url, code, input, box, entity, yesButton,
|
||||
function copyToClipboard(text,text2)
|
||||
{
|
||||
text = text.replace(/<br>/g,"\n");
|
||||
var newElem = '<textarea id="coords" style="border: none; width: 90%; height: 120px;">'+text+'</textarea><br><br>'+text2;
|
||||
$("#dialog").html(newElem);
|
||||
$("#dialog").dialog();
|
||||
$("#coords").select();
|
||||
var newElem = '<textarea id="coordsforpopup" style="border: none; width: 90%; height: 120px;">'+text+'</textarea><br><br>'+text2;
|
||||
/* alert(newElem); */
|
||||
$("#dialogforpopup").html(newElem);
|
||||
$("#dialogforpopup").dialog();
|
||||
$("#coordsforpopup").select();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
@@ -767,9 +767,6 @@ function show_contacts($conf,$langs,$db,$object,$backtopage='')
|
||||
|
||||
print '</form>'."\n";
|
||||
|
||||
// A div for the address popup
|
||||
print '<div id="dialog" title="'.dol_escape_htmltag($langs->trans('Address')).'" style="display: none;"></div>';
|
||||
|
||||
return $i;
|
||||
}
|
||||
|
||||
|
||||
@@ -1953,6 +1953,9 @@ if (! function_exists("llxFooter"))
|
||||
});
|
||||
</script>' . "\n";
|
||||
|
||||
// A div for the address popup
|
||||
print "\n<!-- A div to allow dialog popup -->\n";
|
||||
print '<div id="dialogforpopup" style="display: none;"></div>'."\n";
|
||||
|
||||
print "</body>\n";
|
||||
print "</html>\n";
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 358 B After Width: | Height: | Size: 374 B |
@@ -80,7 +80,7 @@ $dol_use_jmobile=$conf->dol_use_jmobile;
|
||||
//var_dump($user->conf->THEME_ELDY_RGB);
|
||||
|
||||
// Colors
|
||||
$colorbackhmenu1='0,0,0'; // topmenu
|
||||
$colorbackhmenu1='0,0,80'; // topmenu
|
||||
$colorbackvmenu1='255,255,255'; // vmenu
|
||||
$colorbacktitle1='230,230,230'; // title of array
|
||||
$colorbacktabcard1='255,255,255'; // card
|
||||
@@ -102,7 +102,7 @@ $useboldtitle=1;
|
||||
|
||||
// Case of option always editable
|
||||
if (! isset($conf->global->THEME_ELDY_BACKBODY)) $conf->global->THEME_ELDY_BACKBODY=$colorbackbody;
|
||||
if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1='0,0,0';
|
||||
if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1='50,50,60';
|
||||
if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1=$colorbacktitle1;
|
||||
if (! isset($conf->global->THEME_ELDY_USE_HOVER)) $conf->global->THEME_ELDY_USE_HOVER=='238,246,252';
|
||||
if (! isset($conf->global->THEME_ELDY_TEXTTITLENOTAB)) $conf->global->THEME_ELDY_TEXTTITLENOTAB=$colortexttitlenotab;
|
||||
|
||||
Reference in New Issue
Block a user