Skip to content

Commit

Permalink
add nicer class & attribute icons #383
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Jul 10, 2013
1 parent 2ad3cae commit 576f247
Show file tree
Hide file tree
Showing 9 changed files with 2 additions and 2 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/byref.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/cc.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/class.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/dozer.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/exclude.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added hawtio-web/src/main/webapp/app/dozer/img/oneway.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions hawtio-web/src/main/webapp/app/dozer/js/helpers.ts
Expand Up @@ -79,9 +79,9 @@ module Dozer {
mappingFolder.key = (parentFolder ? parentFolder.key + "_" : "") + Core.toSafeDomID(mappingName);
mappingFolder.parent = parentFolder;
mappingFolder.entity = mapping;
mappingFolder.icon = url("/app/dozer/img/class.gif");
/*
mappingFolder.tooltip = nodeSettings["tooltip"] || nodeSettings["description"] || id;
mappingFolder.icon = imageUrl;
*/
addMappingFields(mappingFolder, mapping);
return mappingFolder;
Expand All @@ -98,10 +98,10 @@ module Dozer {
fieldFolder.key = folder.key + "_" + Core.toSafeDomID(name);
fieldFolder.parent = folder;
fieldFolder.entity = field;
fieldFolder.icon = url("/app/dozer/img/attribute.gif");

/*
fieldFolder.tooltip = nodeSettings["tooltip"] || nodeSettings["description"] || id;
fieldFolder.icon = imageUrl;
*/

folder.children.push(fieldFolder);
Expand Down

0 comments on commit 576f247

Please sign in to comment.