From 564025d9553c2332109c39c87e9aa445140d01aa Mon Sep 17 00:00:00 2001 From: smaren Date: Thu, 8 May 2014 12:10:01 +0200 Subject: [PATCH] Revert "fixed boundingbox typo" This reverts commit 2715e2409fd2db16ffa1e05e57cf0fdb48c1c0a7. --- spine-js/spine.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spine-js/spine.js b/spine-js/spine.js index 26d0f1608..5c8fd5307 100644 --- a/spine-js/spine.js +++ b/spine-js/spine.js @@ -810,7 +810,7 @@ spine.Event.prototype = { spine.AttachmentType = { region: 0, - boundingBox: 1 + boundingbox: 1 }; spine.RegionAttachment = function (name) { @@ -1645,7 +1645,7 @@ spine.AtlasAttachmentLoader = function (atlas) { spine.AtlasAttachmentLoader.prototype = { newAttachment: function (skin, type, name) { switch (type) { - case spine.AttachmentType.boundingBox: + case spine.AttachmentType.boundingbox: return new spine.BoundingBoxAttachment(name); case spine.AttachmentType.region: var region = this.atlas.findRegion(name);