Merge pull request #714 from kingsquare/fix-713

A fix for #713
This commit is contained in:
Anton Lavrenov 2019-08-24 14:02:26 +03:00 committed by GitHub
commit 5bc1bb87bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16307 additions and 16299 deletions

32592
konva.js

File diff suppressed because it is too large Load Diff

4
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -244,12 +244,13 @@ export class Stage extends Container<BaseLayer> {
* get pointer position which can be a touch position or mouse position
* @method
* @name Konva.Stage#getPointerPosition
* @returns {Object}
* @returns {Vector2d|null}
*/
getPointerPosition() {
getPointerPosition(): Vector2d | null {
const pos = this._pointerPositions[0];
if (!pos) {
Util.warn(NO_POINTERS_MESSAGE);
return null;
}
return {
x: pos.x,
@ -316,7 +317,10 @@ export class Stage extends Container<BaseLayer> {
* // or if you interested in shape parent:
* var group = stage.getIntersection({x: 50, y: 50}, 'Group');
*/
getIntersection(pos: Vector2d, selector?: string): Shape | null {
getIntersection(pos: Vector2d | null, selector?: string): Shape | null {
if (!pos) {
return null;
}
var layers = this.children,
len = layers.length,
end = len - 1,