You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by an...@apache.org on 2016/06/20 02:58:36 UTC

[13/50] [abbrv] ignite git commit: IGNITE-3079 Minor refactoring.

IGNITE-3079 Minor refactoring.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/07b3d74c
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/07b3d74c
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/07b3d74c

Branch: refs/heads/ignite-3262
Commit: 07b3d74c00e1f967048a164efb1004c581f0921f
Parents: 5bc6b45
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Fri Jun 3 15:32:01 2016 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Fri Jun 3 15:32:01 2016 +0700

----------------------------------------------------------------------
 modules/web-console/src/main/js/app/helpers/jade/mixins.jade | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/07b3d74c/modules/web-console/src/main/js/app/helpers/jade/mixins.jade
----------------------------------------------------------------------
diff --git a/modules/web-console/src/main/js/app/helpers/jade/mixins.jade b/modules/web-console/src/main/js/app/helpers/jade/mixins.jade
index 56adfc6..3329a6d 100644
--- a/modules/web-console/src/main/js/app/helpers/jade/mixins.jade
+++ b/modules/web-console/src/main/js/app/helpers/jade/mixins.jade
@@ -466,8 +466,9 @@ mixin table-save-button(valid, save, newItem)
 //- Mixin for table remove button.
 mixin table-remove-conditional-button(items, show, tip)
     i.tipField.fa.fa-remove(
-        ng-hide='!(#{show} && !field.edit)'
-        bs-tooltip='"#{tip}"'
+        ng-hide='!#{show} || field.edit'
+        bs-tooltip
+        data-title=tip
         ng-click='#{items}.splice(#{items}.indexOf(model), 1)'
     )