mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
repair build
This commit is contained in:
parent
94b52e68e0
commit
73a4a573b1
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user