Merge pull request #142 from blind-coder/master

Fix for calculating overlay width / height
This commit is contained in:
iangilman 2013-06-26 09:13:31 -07:00
commit 1df4448be7

View File

@ -713,8 +713,8 @@ $.Viewport.prototype = {
return new $.Rect( return new $.Rect(
coordA.x, coordA.x,
coordA.y, coordA.y,
coordA.x + coordB.x, coordB.x,
coordA.y + coordB.y coordB.y
); );
} }
}; };