Skip to content

Commit

Permalink
Merge branch 'release/1.6.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
iperdomo committed Apr 25, 2014
2 parents b6b9650 + 41c2e52 commit 8b88a89
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dashboard/app/js/lib/controllers/maps-controllers-common.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ FLOW.placemarkController = Ember.ArrayController.create({
var bbString = "", gcLevel, listToRetrieve = [];

// determine the geocell cluster level we want to show
if (zoomlevel < 5){
if (zoomlevel < 4){
gcLevel = 2;
} else if (zoomlevel < 7) {
} else if (zoomlevel < 6) {
gcLevel = 3;
} else if (zoomlevel < 9) {
} else if (zoomlevel < 8) {
gcLevel = 4;
} else if (zoomlevel < 11) {
gcLevel = 5;
Expand Down
5 changes: 5 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Read more about the [Akvo Platform](http://www.akvo.org/blog/?p=4822).

Akvo FLOW Dashboard release notes
----
#1.6.14.2

## Enhancements
* Show more detailed clusters at a lower zoomlevel [#363]

#1.6.14.1

## Resolved issues
Expand Down

0 comments on commit 8b88a89

Please sign in to comment.