Repository: nifi Updated Branches: refs/heads/NIFI-108 cd50dbc59 -> fc628e866
NIFI-108: - Allowing the flowfile details dialog to be draggable. Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/fc628e86 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/fc628e86 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/fc628e86 Branch: refs/heads/NIFI-108 Commit: fc628e866f3beb4a6fdb2d01657556a28a58b9ce Parents: cd50dbc Author: Matt Gilman <[email protected]> Authored: Mon Dec 21 14:00:27 2015 -0500 Committer: Matt Gilman <[email protected]> Committed: Mon Dec 21 14:00:27 2015 -0500 ---------------------------------------------------------------------- .../nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/fc628e86/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js ---------------------------------------------------------------------- diff --git a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js index b0bba1f..5b6e9d9 100644 --- a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js +++ b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-queue-listing.js @@ -148,6 +148,9 @@ nf.QueueListing = (function () { $('#additional-flowfile-details').empty(); } } + }).draggable({ + containment: 'parent', + handle: '.dialog-header' }); };
