From 434216fb243004012bf80e24aac3befdb2cc6dc4 Mon Sep 17 00:00:00 2001 From: Piotr Gawron <piotr.gawron@uni.lu> Date: Mon, 22 May 2017 11:01:35 +0200 Subject: [PATCH] getter added --- frontend-js/src/main/js/map/data/Alias.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend-js/src/main/js/map/data/Alias.js b/frontend-js/src/main/js/map/data/Alias.js index 595f683ddd..06ef52e07e 100644 --- a/frontend-js/src/main/js/map/data/Alias.js +++ b/frontend-js/src/main/js/map/data/Alias.js @@ -141,6 +141,10 @@ Alias.prototype.setY = function(y) { this.y = y; }; +Alias.prototype.getY = function() { + return this.y; +}; + Alias.prototype.setWidth = function(width) { this.width = width; }; -- GitLab