Add missing semicolons

Missing semicolons can cause trouble when minifying
or concatenating Javascript sources. The last one
actually did cause trouble when being followed by
an IIFE after concatenation.
This commit is contained in:
Guido Lorenz 2013-07-31 13:19:12 +02:00
parent 59513b4afa
commit 5b0a3f0b38

View File

@ -742,7 +742,7 @@ spine.RegionAttachment.prototype = {
vertices[6/*X4*/] = offset[6/*X4*/] * m00 + offset[7/*Y4*/] * m01 + x;
vertices[7/*Y4*/] = offset[6/*X4*/] * m10 + offset[7/*Y4*/] * m11 + y;
}
}
};
spine.AnimationStateData = function (skeletonData) {
this.skeletonData = skeletonData;
@ -1291,11 +1291,11 @@ spine.AtlasReader.prototype = {
tuple[i] = this.trim(line.substring(lastMatch));
return i + 1;
}
}
};
spine.AtlasAttachmentLoader = function (atlas) {
this.atlas = atlas;
}
};
spine.AtlasAttachmentLoader.prototype = {
newAttachment: function (skin, type, name) {
switch (type) {
@ -1315,4 +1315,4 @@ spine.AtlasAttachmentLoader.prototype = {
}
throw "Unknown attachment type: " + type;
}
}
};