Repository: incubator-nifi Updated Branches: refs/heads/develop 5527ccbe9 -> 045afa5b2
NIFI-85: Made the Configure Processor modal dialog box movable. Signed-off-by: Matt Gilman <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/621b7f41 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/621b7f41 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/621b7f41 Branch: refs/heads/develop Commit: 621b7f41cb6763d40bfc58588186a77781b5608e Parents: fe3d1a4 Author: Philip Young <[email protected]> Authored: Mon Dec 15 22:17:02 2014 -0500 Committer: Matt Gilman <[email protected]> Committed: Wed Dec 17 07:21:20 2014 -0500 ---------------------------------------------------------------------- .../src/main/webapp/js/nf/canvas/nf-processor-configuration.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/621b7f41/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js ---------------------------------------------------------------------- diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js index a904e6d..e755de2 100644 --- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js +++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-configuration.js @@ -426,6 +426,8 @@ nf.ProcessorConfiguration = (function () { $('#processor-configuration').removeData('processorHistory'); } } + }).draggable({ + handle: ".modal-header" }); // initialize the bulletin combo @@ -701,4 +703,4 @@ nf.ProcessorConfiguration = (function () { } } }; -}()); \ No newline at end of file +}());
