Skip to content
Snippets Groups Projects
Commit 9730e748 authored by llaffont's avatar llaffont
Browse files

Kiosque mode frise: n'affiche pas le pager

parent 786db434
Branches
Tags
No related merge requests found
......@@ -193,9 +193,11 @@ class ZendAfi_View_Helper_Accueil_Kiosque extends ZendAfi_View_Helper_Accueil_Ba
$notices = Class_Notice::findAllByRequeteRecherche($requetes['req_liste'],$nombre_notices_par_page,$page);
}
return
$this->getPagerHtml($page, $nombre_notices_par_page, $nombre_total_notices)
.$this->renderNoticesKiosqueHtml($notices);
$html = $this->renderNoticesKiosqueHtml($notices);
if (!$this->isModeChrono())
$html = $this->getPagerHtml($page, $nombre_notices_par_page, $nombre_total_notices).$html;
return $html;
}
......
......@@ -40,7 +40,9 @@ class ZendAfi_View_Helper_ListeNotices_Chrono extends ZendAfi_View_Helper_ListeN
'type' => 'timeline',
'embed_id' => $embed_id,
'width' => '100%',
'height' => 600,
'height' => 700,
'start_at_end' => true,
'start_zoom_adjust' => -4,
'source' => json_decode($this->view->MoteurRecherche_Resultat_TimelineJsonVisitor($resultat, $preferences)),
'js' => BASE_URL.'/public/opac/TimelineJS-2.25/compiled/js/timeline.js',
'css' => BASE_URL.'/public/opac/TimelineJS-2.25/compiled/css/timeline.css',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment