mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
load url first, then refresh
This commit is contained in:
parent
d9772bdbb0
commit
ded258c53b
1 changed files with 2 additions and 2 deletions
|
@ -22,9 +22,9 @@ define(function (require) {
|
|||
var doNavigation = function (url) {
|
||||
return self.tryForTime(urlTimeout, function () {
|
||||
// since we're using hash URLs, always reload first to force re-render
|
||||
return self.remote.refresh()
|
||||
return self.remote.get(url)
|
||||
.then(function () {
|
||||
return self.remote.get(url);
|
||||
return self.remote.refresh();
|
||||
})
|
||||
.then(function () {
|
||||
if (testStatusPage !== false) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue