Close detail on main pagination

refs #4823
This commit is contained in:
Jannis Moßhammer 2013-10-10 15:33:57 +02:00 committed by Eric Lippmann
parent 549c5d7390
commit 8aea2f4d3c
1 changed files with 6 additions and 1 deletions

View File

@ -169,8 +169,13 @@ function(Container, $, logger, URI) {
var container = (new Container(this));
logger.debug("Pagination clicked in " + container.containerType);
// Detail will be removed when main pagination changes
if (container.containerType === 'icingamain') {
Icinga.replaceBodyFromUrl(URI($(this).attr('href')).removeQuery('detail'));
} else {
container.replaceDomFromUrl($(this).attr('href'));
}
container.replaceDomFromUrl($(this).attr('href'));
ev.preventDefault();
ev.stopPropagation();
return false;