remove debugger statement

This commit is contained in:
lavrton 2015-02-17 10:21:42 +07:00
parent 36f4ab5346
commit ece5d7ac27
3 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@
* Konva JavaScript Framework v0.9.0
* http://konvajs.github.io/
* Licensed under the MIT or GPL Version 2 licenses.
* Date: 2015-02-16
* Date: 2015-02-17
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - 2015 by Anton Lavrenov (Konva)
@ -8340,7 +8340,7 @@ var Konva = {};
},
getClientRect : function(skipTransform) {
var fillRect = this.getSelfRect();
debugger;
var strokeWidth = (this.hasStroke() && this.strokeWidth()) || 0;
var fillAndStrokeWidth = fillRect.width + strokeWidth;
var fillAndStrokeHeight = fillRect.height + strokeWidth;

2
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -169,7 +169,7 @@
},
getClientRect : function(skipTransform) {
var fillRect = this.getSelfRect();
debugger;
var strokeWidth = (this.hasStroke() && this.strokeWidth()) || 0;
var fillAndStrokeWidth = fillRect.width + strokeWidth;
var fillAndStrokeHeight = fillRect.height + strokeWidth;