Skip to content

Commit

Permalink
Remove erroneous } after merging #7
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Telford committed May 23, 2016
1 parent 4cba178 commit fd19e26
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,14 @@
* @param {Function} obj1 Child class.
* @param {Function} obj2 Parent class.
*/
MarkerLabel_.prototype.extend = function(obj1, obj2) {
return (function(object) {
for (var property in object.prototype) {
this.prototype[property] = object.prototype[property];
}
return this;
}).apply(obj1, [obj2]);
};
}
MarkerLabel_.prototype.extend = function(obj1, obj2) {
return (function(object) {
for (var property in object.prototype) {
this.prototype[property] = object.prototype[property];
}
return this;
}).apply(obj1, [obj2]);
};

/**
* This constructor creates a label and associates it with a marker.
Expand Down

0 comments on commit fd19e26

Please sign in to comment.