Repository: nifi Updated Branches: refs/heads/master 8e17929d6 -> a76641b25
[NIFI-2891] persist selected tab for connection configuration dialog, except for when creating a new connection the dialog will open with the details tab visible since users will need to select a connection relationship. This closes #1535 Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/a76641b2 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/a76641b2 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/a76641b2 Branch: refs/heads/master Commit: a76641b252a6fdb9e7c80611089c71d9bd065042 Parents: 8e17929 Author: Scott Aslan <[email protected]> Authored: Thu Feb 23 10:40:58 2017 -0500 Committer: Matt Gilman <[email protected]> Committed: Mon Feb 27 09:21:55 2017 -0500 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-connection-configuration.js | 3 --- 1 file changed, 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/a76641b2/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js index a404e5f..47a6367 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js @@ -1450,9 +1450,6 @@ } }]); - // select the first tab - $('#connection-configuration-tabs').find('li:first').click(); - // show the details dialog $('#connection-configuration').modal('setHeaderText', 'Configure Connection').modal('show');
