Skip to content

Commit

Permalink
Add Open Liberty icon option
Browse files Browse the repository at this point in the history
  • Loading branch information
rhamilto committed Sep 9, 2019
1 parent 8cd8bd0 commit eede87d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
Binary file added app/images/logos/openliberty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/scripts/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -670,6 +670,7 @@ angular.extend(window.OPENSHIFT_CONSTANTS, {
'icon-nginx': 'nginx.svg',
'icon-nodejs': 'nodejs.svg',
'icon-openjdk': 'openjdk.svg',
'icon-openliberty': 'openliberty.png',
'icon-openshift': 'openshift.svg',
'icon-openstack': 'openstack.svg',
'icon-other-linux': 'other-linux.svg',
Expand Down
Binary file added dist/images/logos/openliberty.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions dist/scripts/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -1115,6 +1115,7 @@ LOGOS: {
"icon-nginx": "nginx.svg",
"icon-nodejs": "nodejs.svg",
"icon-openjdk": "openjdk.svg",
"icon-openliberty": "openliberty.png",
"icon-openshift": "openshift.svg",
"icon-openstack": "openstack.svg",
"icon-other-linux": "other-linux.svg",
Expand Down
27 changes: 10 additions & 17 deletions dist/scripts/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -76067,24 +76067,17 @@ function o(e) {
if ("string" != typeof e) throw new TypeError("Invalid operator type, expected string but got " + typeof e);
if (-1 === s.indexOf(e)) throw new TypeError("Invalid operator, expected one of " + s.join("|"));
}
var a = /^v?(?:\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+))?(?:-[\da-z\-]+(?:\.[\da-z\-]+)*)?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i, s = [ ">", ">=", "=", "<", "<=" ];
var a = /^v?(?:\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+)(\.(?:[x*]|\d+))?(?:-[\da-z\-]+(?:\.[\da-z\-]+)*)?(?:\+[\da-z\-]+(?:\.[\da-z\-]+)*)?)?)?$/i, s = [ ">", ">=", "=", "<", "<=" ], l = {
">": [ 1 ],
">=": [ 0, 1 ],
"=": [ 0 ],
"<=": [ -1, 0 ],
"<": [ -1 ]
};
return r.compare = function(e, t, n) {
switch (o(n), n) {
case ">":
return r(e, t) > 0;

case ">=":
return r(e, t) >= 0;

case "<":
return r(e, t) < 0;

case "<=":
return r(e, t) <= 0;

default:
return 0 === r(e, t);
}
o(n);
var i = r(e, t);
return l[n].indexOf(i) > -1;
}, r;
}), function() {
"use strict";
Expand Down

0 comments on commit eede87d

Please sign in to comment.