You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ak...@apache.org on 2015/08/28 12:16:48 UTC

ignite git commit: IGNITE-843 ids for testing.

Repository: ignite
Updated Branches:
  refs/heads/ignite-843 a3eb65374 -> 2a9322d36


IGNITE-843 ids for testing.


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

Branch: refs/heads/ignite-843
Commit: 2a9322d3613db050903145e0654e8244c3c117e8
Parents: a3eb653
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Fri Aug 28 17:17:12 2015 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Fri Aug 28 17:17:12 2015 +0700

----------------------------------------------------------------------
 .../control-center-web/src/main/js/views/templates/select.jade | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/2a9322d3/modules/control-center-web/src/main/js/views/templates/select.jade
----------------------------------------------------------------------
diff --git a/modules/control-center-web/src/main/js/views/templates/select.jade b/modules/control-center-web/src/main/js/views/templates/select.jade
index 16205c5..dba67f0 100644
--- a/modules/control-center-web/src/main/js/views/templates/select.jade
+++ b/modules/control-center-web/src/main/js/views/templates/select.jade
@@ -16,10 +16,10 @@
 
 ul.select.dropdown-menu(tabindex='-1' ng-show='$isVisible()' role='select')
     li(ng-if='$showAllNoneButtons || ($isMultiple && $matches.length > 5)')
-        a(ng-click='$selectAll()') {{$allText}} ({{$matches.length}})
-        a(ng-click='$selectNone()') {{$noneText}}
+        a(id='li-dropdown-select-all' ng-click='$selectAll()') {{$allText}} ({{$matches.length}})
+        a(id='li-dropdown-select-none' ng-click='$selectNone()') {{$noneText}}
         hr(style='margin: 5px 0')
-    li(role='presentation' ng-repeat='match in $matches')
+    li(id='"li-dropdown-item-" + $index' role='presentation' ng-repeat='match in $matches')
         hr(ng-if='match.value == undefined' style='margin: 5px 0')
         a(style='cursor: default; padding: 3px 6px;' role='menuitem' tabindex='-1' ng-class='{active: $isActive($index)}' ng-click='$select($index, $event)')
             i(class='{{$iconCheckmark}}' ng-if='$isActive($index)' ng-class='{active: $isActive($index)}' style='color: #ec1c24; margin-left: 15px; line-height: 20px; float: right;background-color: transparent;')