Skip to content

Commit 04b9731

Browse files
author
Lanny McNie
committed
Fixed AlphaMapFilter error
Signed-off-by: Lanny McNie <lanny@gskinner.com>
1 parent 4f94516 commit 04b9731

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

VERSIONS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Version NEXT [NOT RELEASED]
1111
- added MouseEvent.localX/Y
1212
- fixed touch/multitouch in IE11
1313
- fixed issue with -1 mouse pointers (thanks cubica)
14+
- fixed issue with AlphaMapFilter (thanks Dave)
1415

1516

1617
Version 0.7.0 [September 25, 2013]

lib/easeljs-NEXT.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/easeljs/filters/AlphaMapFilter.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ this.createjs = this.createjs || {};
118118
for(var i = 0; i < l; i += 4) {
119119
data[i + 3] = map[i] || 0;
120120
}
121-
imageData.data = data;
122121
targetCtx.putImageData(imageData, targetX, targetY);
123122
return true;
124123
};

src/easeljs/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ this.createjs = this.createjs || {};
2727
* @type String
2828
* @static
2929
**/
30-
s.buildDate = /*date*/"Mon, 02 Dec 2013 22:39:15 GMT"; // injected by build process
30+
s.buildDate = /*date*/"Thu, 05 Dec 2013 22:43:21 GMT"; // injected by build process
3131

3232
})();

0 commit comments

Comments
 (0)