forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix timelion data-render-complete attribute on resize (elastic#29320)
* Fix timelion missing renderer on resize Adding a watch to the renderComplete promise to fix missing rendering of chart when the resize observer detect a change in size. Removed the existing resize observer. * Revert removing observe resize It's need on the timelion app to resize since that app doesn't use visualize loader * Change double watch to watchgroup * Reenable skipped dashboard test
- Loading branch information
Showing
2 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<div ng-controller="TimelionVisController" class="timVis"> | ||
<div chart="esResponse.sheet[0]" class="timChart" interval="visState.params.interval"></div> | ||
<div chart="esResponse.sheet[0]" rerender-trigger="renderComplete" class="timChart" interval="visState.params.interval"></div> | ||
</div> |