Merge branch '943-header-refresh-no-stops-in-events-view-dev' into 'develop'
Removed old code that breaks the autorefresh pause See merge request !538
This commit is contained in:
commit
3aa4fc7315
|
@ -1300,8 +1300,8 @@ function ui_process_page_head ($string, $bitfield) {
|
|||
$_GET['sec2'] == 'enterprise/dashboard/main_dashboard') {
|
||||
|
||||
$query = ui_get_url_refresh (false, false);
|
||||
$output .= '<meta http-equiv="refresh" content="' .
|
||||
$config_refr . '; URL=' . $query . '" />';
|
||||
//$output .= '<meta http-equiv="refresh" content="' .
|
||||
//$config_refr . '; URL=' . $query . '" />';
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -46,6 +46,7 @@ function show_event_dialog(event_id, group_rep, dialog_page, result) {
|
|||
modal: true,
|
||||
close: function() {
|
||||
$("#refrcounter").countdown("resume");
|
||||
$('div.vc-countdown').countdown('resume');
|
||||
},
|
||||
overlay: {
|
||||
opacity: 0.5,
|
||||
|
@ -56,7 +57,8 @@ function show_event_dialog(event_id, group_rep, dialog_page, result) {
|
|||
})
|
||||
.show ();
|
||||
|
||||
$("#refrcounter").countdown("pause");
|
||||
$("#refrcounter").countdown('pause');
|
||||
$('div.vc-countdown').countdown('pause');
|
||||
|
||||
switch (result) {
|
||||
case 'comment_ok':
|
||||
|
|
Loading…
Reference in New Issue