NIFI-250: - Ensuring the tables are resized when appropriate. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/2da57924 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/2da57924 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/2da57924
Branch: refs/heads/NIFI-250 Commit: 2da57924286fe1f9ae320e270ba0aba77a08d8b7 Parents: 1854ebe Author: Matt Gilman <[email protected]> Authored: Mon Jan 26 09:39:14 2015 -0500 Committer: Matt Gilman <[email protected]> Committed: Mon Jan 26 09:39:14 2015 -0500 ---------------------------------------------------------------------- .../nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/2da57924/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js index ee8b409..c797429 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-settings.js @@ -760,6 +760,9 @@ nf.Settings = (function () { return 'Create a new reporting task'; } }); + + // resize the table + nf.Settings.resetTableSize(); } } });
