diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-18 16:53:56 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-12-18 16:53:56 +0100 |
commit | 9d2c85f7a2a23fcf9ce3c842d86227afed43a153 (patch) | |
tree | fe3961130d308212047381eb23a8d2b6e2065dfe /python/gui/static/js | |
parent | e83e1324a50055a4b972b78e26383df7ee290fee (diff) | |
download | dabmod-9d2c85f7a2a23fcf9ce3c842d86227afed43a153.tar.gz dabmod-9d2c85f7a2a23fcf9ce3c842d86227afed43a153.tar.bz2 dabmod-9d2c85f7a2a23fcf9ce3c842d86227afed43a153.zip |
GUI: Automatically iterate captures and show model plots
Diffstat (limited to 'python/gui/static/js')
-rw-r--r-- | python/gui/static/js/odr-predistortion.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/gui/static/js/odr-predistortion.js b/python/gui/static/js/odr-predistortion.js index e9f7c96..ff82142 100644 --- a/python/gui/static/js/odr-predistortion.js +++ b/python/gui/static/js/odr-predistortion.js @@ -39,6 +39,13 @@ function resultrefresh() { if (data['statplot']) { $('#dpdcapturestats').attr('src', data['statplot']); } + + if (data['amplot']) { + $('#dpdamplot').attr('src', data['amplot']); + } + if (data['pmplot']) { + $('#dpdpmplot').attr('src', data['pmplot']); + } }); jqxhr.always(function() { |