Merge pull request #3263 from jieter/patch-2

Add a space to make comments look consistant
This commit is contained in:
Vladimir Agafonkin 2015-02-27 18:28:32 +02:00
commit 562c579e3e

View File

@ -26,7 +26,7 @@ L.Class.extend = function (props) {
NewClass.prototype = proto;
//inherit parent's statics
// inherit parent's statics
for (var i in this) {
if (this.hasOwnProperty(i) && i !== 'prototype') {
NewClass[i] = this[i];