repair build

This commit is contained in:
lavrton 2015-01-15 10:10:57 +07:00
parent 94b52e68e0
commit 73a4a573b1
2 changed files with 12 additions and 2 deletions

View File

@ -58,7 +58,12 @@
* @param {Number} [bounds.height]
* @example
* layer.clear();
* layer.clear(0, 0, 100, 100);
* layer.clear({
* x : 0,
* y : 0,
* width : 100,
* height : 100
* });
*/
clear: function(bounds) {
this.getContext().clear(bounds);

View File

@ -180,7 +180,12 @@
* @param {Number} [bounds.height]
* @example
* layer.clear();
* layer.clear(0, 0, 100, 100);
* layer.clear({
* x : 0,
* y : 0,
* width : 100,
* height : 100
* });
*/
clear: function(bounds) {
this.getContext().clear(bounds);