Repository: nifi Updated Branches: refs/heads/master 68b42c9e5 -> 24e298101
[NIFI-4117] update connection config prioritizers to be contained within their parent element This closes #1944. Signed-off-by: Pierre Villard <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/24e29810 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/24e29810 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/24e29810 Branch: refs/heads/master Commit: 24e2981012e7907dfdea70cd38a793d9dd295669 Parents: 68b42c9 Author: Scott Aslan <[email protected]> Authored: Mon Jun 26 13:57:30 2017 -0400 Committer: Pierre Villard <[email protected]> Committed: Mon Jun 26 20:25:50 2017 +0200 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-connection-configuration.js | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/24e29810/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 3642536..9f0013f 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 @@ -1220,6 +1220,7 @@ // make the prioritizer containers sortable $('#prioritizer-available, #prioritizer-selected').sortable({ + containment: $('#connection-settings-tab-content').find('.settings-right'), connectWith: 'ul', placeholder: 'ui-state-highlight', scroll: true,
