Repository: nifi
Updated Branches:
  refs/heads/master 57648308d -> 6b5950647


NIFI-2596:
- Adding tooltip for property descriptor on mouse enter of table cell.

This closes #893.


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

Branch: refs/heads/master
Commit: 6b5950647a8d773bf1625b5a5cb1d680551693e2
Parents: 5764830
Author: Matt Gilman <[email protected]>
Authored: Thu Aug 18 15:14:06 2016 -0400
Committer: Mark Payne <[email protected]>
Committed: Thu Aug 18 17:23:30 2016 -0400

----------------------------------------------------------------------
 .../main/webapp/js/jquery/propertytable/jquery.propertytable.js    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/nifi/blob/6b595064/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
----------------------------------------------------------------------
diff --git 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
index b914482..104bc89 100644
--- 
a/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
+++ 
b/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/src/main/webapp/js/jquery/propertytable/jquery.propertytable.js
@@ -1056,7 +1056,7 @@
             // show the property description if applicable
             if (nf.Common.isDefinedAndNotNull(propertyDescriptor)) {
                 if (!nf.Common.isBlank(propertyDescriptor.description) || 
!nf.Common.isBlank(propertyDescriptor.defaultValue) || 
!nf.Common.isBlank(propertyDescriptor.supportsEl)) {
-                    $('<div class="fa fa-question-circle" alt="Info" title="' 
+ propertyDescriptor.description + '" style="float: right; margin-right: 6px; 
margin-top: 4px;"></div>').appendTo(cellContent);
+                    $('<div class="fa fa-question-circle" alt="Info" 
style="float: right; margin-right: 6px; margin-top: 
4px;"></div>').appendTo(cellContent);
                     $('<span class="hidden 
property-descriptor-name"></span>').text(dataContext.property).appendTo(cellContent);
                     nameWidthOffset = 46; // 10 + icon width (10) + icon 
margin (6) + padding (20)
                 }

Reply via email to