Fix regressions

This commit is contained in:
Frederic Guillot
2015-10-19 22:47:45 -04:00
parent 039baacaa0
commit 5d15075223
5 changed files with 7 additions and 5 deletions

View File

@@ -14,7 +14,8 @@ Popover.prototype.open = function(link) {
$.get(link, function(content) {
$("body").append('<div id="popover-container"><div id="popover-content">' + content + '</div></div>');
self.router.dispatch();
self.app.refresh();
self.router.dispatch(this.app);
self.afterOpen();
});
};