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

getters added

parent 434216fb
No related branches found
No related tags found
1 merge request!5Frontend refactor
......@@ -152,6 +152,13 @@ Alias.prototype.setWidth = function(width) {
Alias.prototype.setHeight = function(height) {
this.height = height;
};
Alias.prototype.getWidth = function() {
return this.width;
};
Alias.prototype.getHeight = function() {
return this.height;
};
Alias.prototype.getName = function() {
return this.name;
......
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