Skip to content

Commit

Permalink
ENH: no longer color valid cells green
Browse files Browse the repository at this point in the history
Fixes #58. This will require some doc changes on the website.
  • Loading branch information
jairideout committed Jun 15, 2015
1 parent dd75c4a commit 63cef7e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Keemei changelog

## Development version

### Features
* Valid cells (i.e., those without any errors or warnings) are no longer colored green as this information wasn't important to display. The green coloring could actually detract from the ease of locating invalid cells. [#58](https://github.com/biocore/Keemei/issues/58)

## Version 2
Initial alpha release.
2 changes: 1 addition & 1 deletion src/State.gs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function setStatus_(range, state) {
};

function initializeState_(range) {
colors = initializeGrid_(range, Status.SUCCESS);
colors = initializeGrid_(range, Status.RESET);
notes = initializeGrid_(range, "");
return {
colors: colors,
Expand Down

0 comments on commit 63cef7e

Please sign in to comment.