Skip to content
Snippets Groups Projects
Commit 4a8d511a authored by Ghislain Loas's avatar Ghislain Loas
Browse files

hotline #64325 remove auto scroll + fix reading settings

parent 07a4b486
Branches
Tags
3 merge requests!2334Master,!2326Hotline master,!2314Hotline#64325 boite bibliotheque l action filtres par defaut accessible meme si non connecte ajax ko
Pipeline #2360 failed with stage
in 13 minutes and 12 seconds
......@@ -49,6 +49,7 @@ class ZendAfi_View_Helper_Accueil_Base extends ZendAfi_View_Helper_ModuleAbstrac
if (!$this->preferences)
$this->preferences = $modules_accueil->getValeursParDefaut($this->type_module);
$this->preferences = array_merge($modules_accueil->getValeursParDefaut($this->type_module),
$this->preferences);
}
......
......@@ -33,6 +33,9 @@ abstract class ZendAfi_View_Helper_ModuleAbstract extends ZendAfi_View_Helper_Ba
$this->id_module = $id_module;
$this->preferences = array_merge($params['preferences'],
$params);
$this->preferences = array_merge($this->preferences,
$this->preferences['preferences']);
}
......
......@@ -37,11 +37,6 @@
var onLoadComplete = function() {
widget.ajaxifyFilters();
var offset = widget.offset();
$('html, body').animate({scrollTop:offset.top},
500,
'easeInSine');
};
......
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