js/CGP: Disable page refesh when scrolling or zooming a graph #173
+2
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When scrolling or zooming a graph we want to disable the page refresh because we are trying to look at the detail. Unfortunately
Javascript cannot override the refresh meta tag;
<meta http-equiv="refresh" content="{$CONFIG['page_refresh']}">
Except with a window.stop() which is brutal but since the complete RRD data has already been read this is not an issue.
See issue #139 suggesting submitting a PR to refresh RRD data whilst a graph is scrolled or zoomed.