Fix detail being added twice to URLs on updateContainerHref
This was caused by an redudant call to updateContainerHref in mainDetailGrid refs #4823
This commit is contained in:
parent
9120cb3d99
commit
549c5d7390
|
@ -166,10 +166,11 @@ function(Container, $, logger, URI) {
|
|||
|
||||
});
|
||||
$('.pagination li a', contentNode.parent()).on('click', function(ev) {
|
||||
|
||||
var container = (new Container(this));
|
||||
container.replaceDomFromUrl(
|
||||
container.updateContainerHref($(this).attr('href'))
|
||||
);
|
||||
logger.debug("Pagination clicked in " + container.containerType);
|
||||
|
||||
container.replaceDomFromUrl($(this).attr('href'));
|
||||
ev.preventDefault();
|
||||
ev.stopPropagation();
|
||||
return false;
|
||||
|
@ -207,7 +208,7 @@ function(Container, $, logger, URI) {
|
|||
this.registerControls();
|
||||
this.registerTableLinks();
|
||||
this.registerHistoryChanges();
|
||||
this.registerLoadIndicator();
|
||||
|
||||
};
|
||||
|
||||
this.construct(gridDomNode);
|
||||
|
|
Loading…
Reference in New Issue