You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by se...@apache.org on 2015/06/29 18:19:35 UTC

incubator-ignite git commit: # IGNITE-843 Add icons for tabs.

Repository: incubator-ignite
Updated Branches:
  refs/heads/ignite-843 5af10b04e -> 24881dea7


# IGNITE-843 Add icons for tabs.


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

Branch: refs/heads/ignite-843
Commit: 24881dea72582970198ab92fe37e1ad588c61cf7
Parents: 5af10b0
Author: sevdokimov <se...@jetbrains.com>
Authored: Mon Jun 29 19:17:13 2015 +0300
Committer: sevdokimov <se...@jetbrains.com>
Committed: Mon Jun 29 19:19:29 2015 +0300

----------------------------------------------------------------------
 modules/webconfig/nodejs/public/images/docker.png | Bin 0 -> 994 bytes
 modules/webconfig/nodejs/public/images/java.png   | Bin 0 -> 170 bytes
 modules/webconfig/nodejs/public/images/xml.png    | Bin 0 -> 232 bytes
 modules/webconfig/nodejs/views/summary.jade       |  12 +++++++++---
 4 files changed, 9 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/24881dea/modules/webconfig/nodejs/public/images/docker.png
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/public/images/docker.png b/modules/webconfig/nodejs/public/images/docker.png
new file mode 100644
index 0000000..7ec3aef
Binary files /dev/null and b/modules/webconfig/nodejs/public/images/docker.png differ

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/24881dea/modules/webconfig/nodejs/public/images/java.png
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/public/images/java.png b/modules/webconfig/nodejs/public/images/java.png
new file mode 100644
index 0000000..ddb3b8e
Binary files /dev/null and b/modules/webconfig/nodejs/public/images/java.png differ

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/24881dea/modules/webconfig/nodejs/public/images/xml.png
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/public/images/xml.png b/modules/webconfig/nodejs/public/images/xml.png
new file mode 100644
index 0000000..029065e
Binary files /dev/null and b/modules/webconfig/nodejs/public/images/xml.png differ

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/24881dea/modules/webconfig/nodejs/views/summary.jade
----------------------------------------------------------------------
diff --git a/modules/webconfig/nodejs/views/summary.jade b/modules/webconfig/nodejs/views/summary.jade
index b0fca72..8bbeb37 100644
--- a/modules/webconfig/nodejs/views/summary.jade
+++ b/modules/webconfig/nodejs/views/summary.jade
@@ -49,11 +49,17 @@ block content
             #cfgResult.configBox(ng-show='currCluster && !generateError && !loading', style='margin-top: 20px')
                 ul.nav.nav-tabs
                     li(ng-class='{active: cfgLang=="xml"}')
-                        a(href, ng-click='cfgLang = "xml"') XML
+                        a(href, ng-click='cfgLang = "xml"')
+                            img(src='images/xml.png', width='16px' height='16px')
+                            |  XML
                     li(ng-class='{active: cfgLang=="java"}')
-                        a(href, ng-click='cfgLang = "java"') Java
+                        a(href, ng-click='cfgLang = "java"')
+                            img(src='images/java.png', width='16px' height='16px')
+                            |  Java
                     li(ng-class="{active: cfgLang=='docker'}")
-                        a(href, ng-click='cfgLang = "docker"') Dockerfile
+                        a(href, ng-click='cfgLang = "docker"')
+                            img(src='images/docker.png', width='16px' height='16px')
+                            |  Dockerfile
 
                 div(style='padding-top: 10px')        
                     #xmlResult(ng-show="cfgLang == 'xml'")