You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by mc...@apache.org on 2014/12/17 16:37:45 UTC

[1/4] incubator-nifi git commit: NIFI-85: Made the Configure Processor modal dialog box movable.

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 <ma...@gmail.com>


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 <pt...@gmail.com>
Authored: Mon Dec 15 22:17:02 2014 -0500
Committer: Matt Gilman <ma...@gmail.com>
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
+}());


[3/4] incubator-nifi git commit: NIFI-85: - Updating draggable usage for better consistency.

Posted by mc...@apache.org.
NIFI-85:
- Updating draggable usage for better consistency.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/ca872bad
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/ca872bad
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/ca872bad

Branch: refs/heads/develop
Commit: ca872badaea08987728a6496eeabf5091163f1ba
Parents: 9c08118
Author: Matt Gilman <ma...@gmail.com>
Authored: Wed Dec 17 10:07:45 2014 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Wed Dec 17 10:07:45 2014 -0500

----------------------------------------------------------------------
 .../src/main/webapp/js/nf/canvas/nf-label-configuration.js      | 3 ++-
 .../webapp/js/nf/canvas/nf-processor-property-combo-editor.js   | 5 ++++-
 .../webapp/js/nf/canvas/nf-processor-property-text-editor.js    | 1 +
 3 files changed, 7 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/ca872bad/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label-configuration.js
index 4c8e555..aef6c74 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-label-configuration.js
@@ -62,7 +62,8 @@ nf.LabelConfiguration = (function () {
 
             // make the new property dialog draggable
             $('#label-configuration').draggable({
-                containment: 'parent'
+                containment: 'parent',
+                cancel: 'textarea, .button, .combo'
             }).on('click', '#label-configuration-apply', apply).on('click', '#label-configuration-cancel', cancel);
 
             // create the available sizes

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/ca872bad/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-combo-editor.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-combo-editor.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-combo-editor.js
index a7c488c..11cd7ff 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-combo-editor.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-combo-editor.js
@@ -33,7 +33,10 @@ nf.ProcessorPropertyComboEditor = function (args) {
             'border': '3px solid #365C6A',
             'box-shadow': '4px 4px 6px rgba(0, 0, 0, 0.9)',
             'cursor': 'move'
-        }).draggable().appendTo(container);
+        }).draggable({
+            cancel: '.button, .combo',
+            containment: 'parent'
+        }).appendTo(container);
 
         // identify the property descriptor - property descriptor is never null/undefined here... in order
         // to use this editor, the property descriptor would have had to indicate a set of allowable values

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/ca872bad/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-text-editor.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-text-editor.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-text-editor.js
index 7eb562a..8b65b3f 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-text-editor.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-processor-property-text-editor.js
@@ -44,6 +44,7 @@ nf.ProcessorPropertyTextEditor = function (args) {
             'box-shadow': '4px 4px 6px rgba(0, 0, 0, 0.9)',
             'cursor': 'move'
         }).draggable({
+            cancel: '.button, textarea, .nf-checkbox',
             containment: 'parent'
         }).appendTo(container);
 


[2/4] incubator-nifi git commit: NIFI-85: - Using draggable on all dialogs that are applicable at the moment.

Posted by mc...@apache.org.
NIFI-85:
- Using draggable on all dialogs that are applicable at the moment.

Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/9c08118f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/9c08118f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/9c08118f

Branch: refs/heads/develop
Commit: 9c08118f5718d21320c35e63144cd4eb0de78a9e
Parents: 621b7f4
Author: Matt Gilman <ma...@gmail.com>
Authored: Wed Dec 17 09:11:25 2014 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Wed Dec 17 09:11:25 2014 -0500

----------------------------------------------------------------------
 .../framework/web/nifi-web-ui/src/main/webapp/css/main.css    | 4 ++++
 .../main/webapp/js/nf/canvas/nf-connection-configuration.js   | 3 +++
 .../src/main/webapp/js/nf/canvas/nf-port-configuration.js     | 3 +++
 .../src/main/webapp/js/nf/canvas/nf-port-details.js           | 3 +++
 .../webapp/js/nf/canvas/nf-process-group-configuration.js     | 3 +++
 .../src/main/webapp/js/nf/canvas/nf-process-group-details.js  | 3 +++
 .../main/webapp/js/nf/canvas/nf-processor-configuration.js    | 3 ++-
 .../js/nf/canvas/nf-remote-process-group-configuration.js     | 3 +++
 .../webapp/js/nf/canvas/nf-remote-process-group-details.js    | 3 +++
 .../main/webapp/js/nf/canvas/nf-remote-process-group-ports.js | 3 +++
 .../main/webapp/js/nf/canvas/nf-secure-port-configuration.js  | 3 +++
 .../src/main/webapp/js/nf/canvas/nf-secure-port-details.js    | 3 +++
 .../src/main/webapp/js/nf/nf-connection-details.js            | 7 +++++++
 .../nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js | 7 +++++++
 14 files changed, 50 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/css/main.css
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/css/main.css b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/css/main.css
index 2b93141..862db6e 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/css/main.css
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/css/main.css
@@ -170,6 +170,10 @@ div.button-refresh-hover {
     background: transparent url(../images/buttonRefresh.png) no-repeat scroll top right;
 }
 
+.ui-draggable .dialog-header {
+    cursor: move;
+}
+
 /* processor status styles */
 
 div.disabled {

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js
index a8e4acc..ef387d6 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-connection-configuration.js
@@ -1108,6 +1108,9 @@ nf.ConnectionConfiguration = (function () {
                         resetDialog();
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
 
             // initialize the properties tabs

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-configuration.js
index 189f19f..49d2b01 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-configuration.js
@@ -121,6 +121,9 @@ nf.PortConfiguration = (function () {
                     $('#port-comments').val('');
                 }
             }
+        }).draggable({
+            containment: 'parent',
+            handle: '.dialog-header'
         });
     };
 

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-details.js
index 6b4bd8f..a2cba44 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-port-details.js
@@ -39,6 +39,9 @@ nf.PortDetails = (function () {
                         nf.Common.clearField('read-only-port-comments');
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js
index de7a2d8..3603976 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-configuration.js
@@ -78,6 +78,9 @@ nf.ProcessGroupConfiguration = (function () {
                         $('#process-group-comments').val('');
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-details.js
index 7c6badd..2f88c12 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-process-group-details.js
@@ -38,6 +38,9 @@ nf.ProcessGroupDetails = (function () {
                         nf.Common.clearField('read-only-process-group-comments');
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/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 e755de2..31bd79e 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
@@ -427,7 +427,8 @@ nf.ProcessorConfiguration = (function () {
                     }
                 }
             }).draggable({
-                handle: ".modal-header"
+                containment: 'parent',
+                handle: '.dialog-header'
             });
 
             // initialize the bulletin combo

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-configuration.js
index 8920bdd..8e0ea8e 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-configuration.js
@@ -91,6 +91,9 @@ nf.RemoteProcessGroupConfiguration = (function () {
                         $('#remote-process-group-yield-duration').val('');
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-details.js
index 296652b..c75c244 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-details.js
@@ -37,6 +37,9 @@ nf.RemoteProcessGroupDetails = (function () {
                         $('#read-only-remote-process-group-yield-duration').val('');
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-ports.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-ports.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-ports.js
index 3d68fe5..7cce907 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-ports.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-remote-process-group-ports.js
@@ -167,6 +167,9 @@ nf.RemoteProcessGroupPorts = (function () {
                     $('#remote-process-group-output-ports-container').empty();
                 }
             }
+        }).draggable({
+            containment: 'parent',
+            handle: '.dialog-header'
         });
     };
 

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-configuration.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-configuration.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-configuration.js
index 54e2bb2..7c119c8 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-configuration.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-configuration.js
@@ -128,6 +128,9 @@ nf.SecurePortConfiguration = (function () {
                     $('#allowed-groups').empty();
                 }
             }
+        }).draggable({
+            containment: 'parent',
+            handle: '.dialog-header'
         });
 
         // listen for removal requests

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-details.js
index 9b66b09..fec4229 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/canvas/nf-secure-port-details.js
@@ -83,6 +83,9 @@ nf.SecurePortDetails = (function () {
                         $('#read-only-allowed-groups').empty();
                     }
                 }
+            }).draggable({
+                containment: 'parent',
+                handle: '.dialog-header'
             });
         },
         

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-connection-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-connection-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-connection-details.js
index 4ba2a1d..ca3304f 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-connection-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-connection-details.js
@@ -345,6 +345,13 @@ nf.ConnectionDetails = (function () {
                     }
                 }
             });
+            
+            if (overlayBackground) {
+                $('#connection-details').draggable({
+                    containment: 'parent',
+                    handle: '.dialog-header'
+                });
+            }
         },
         
         /**

http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/9c08118f/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
----------------------------------------------------------------------
diff --git a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
index 480a380..da7c6e9 100644
--- a/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
+++ b/nar-bundles/framework-bundle/framework/web/nifi-web-ui/src/main/webapp/js/nf/nf-processor-details.js
@@ -249,6 +249,13 @@ nf.ProcessorDetails = (function () {
                     }
                 }
             });
+            
+            if (overlayBackground) {
+                $('#processor-details').draggable({
+                    containment: 'parent',
+                    handle: '.dialog-header'
+                });
+            }
 
             // function for formatting the property name
             var nameFormatter = function (row, cell, value, columnDef, dataContext) {


[4/4] incubator-nifi git commit: Merge branch 'develop' into NIFI-85

Posted by mc...@apache.org.
Merge branch 'develop' into NIFI-85


Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/045afa5b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/045afa5b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/045afa5b

Branch: refs/heads/develop
Commit: 045afa5b2e6c0d9ce96fd65387d659ce7ac3b47f
Parents: ca872ba 5527ccb
Author: Matt Gilman <ma...@gmail.com>
Authored: Wed Dec 17 10:15:47 2014 -0500
Committer: Matt Gilman <ma...@gmail.com>
Committed: Wed Dec 17 10:15:47 2014 -0500

----------------------------------------------------------------------
 .../nifi-web-ui/src/main/webapp/js/nf/nf-status-history.js    | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)
----------------------------------------------------------------------