Skip to content
Snippets Groups Projects
Commit a6dcfd6f authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch '457-comments-issues' into 'devel_12.0.x'

Resolve "Comments issues"

See merge request !350
parents 96e1384f 8ae136b2
No related branches found
No related tags found
2 merge requests!35712.0.1 into master,!350Resolve "Comments issues"
Pipeline #
......@@ -22,4 +22,12 @@ function Point(x, y) {
}
}
/**
*
* @returns {string}
*/
Point.prototype.toString = function () {
return "[" + this.x + ", " + this.y + "]";
};
module.exports = Point;
......@@ -29,4 +29,10 @@ describe('Point', function () {
});
});
it("toString", function () {
var point = new Point(12, 3);
assert.ok(point.toString().indexOf("12")>=0);
assert.ok(point.toString().indexOf("3")>=0);
});
});
......@@ -2,6 +2,8 @@ package lcsb.mapviewer.services.overlay;
import org.apache.commons.lang3.mutable.MutableInt;
import lcsb.mapviewer.common.Configuration;
/**
* This class return links to icons used by the client. It might be good idea to
* move part of the functionality to client side as server shouldn't decide
......@@ -137,6 +139,6 @@ public final class IconManager {
* @return path to comment icon
*/
public String getCommentIcon() {
return "icons/comment.png";
return "icons/comment.png?v="+Configuration.getSystemBuildVersion(null);
}
}
web/src/main/webapp/resources/images/icons/comment.png

701 B | W: | H:

web/src/main/webapp/resources/images/icons/comment.png

696 B | W: | H:

web/src/main/webapp/resources/images/icons/comment.png
web/src/main/webapp/resources/images/icons/comment.png
web/src/main/webapp/resources/images/icons/comment.png
web/src/main/webapp/resources/images/icons/comment.png
  • 2-up
  • Swipe
  • Onion skin
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment