diff options
author | Tobi Oetiker <tobi@oetiker.ch> | 2007-11-18 23:16:29 +0100 |
---|---|---|
committer | Tobi Oetiker <tobi@oetiker.ch> | 2007-11-18 23:16:29 +0100 |
commit | 3d2d01044276848e16d61550e090d1e5001be7de (patch) | |
tree | f9079f03d2b02d42b4aa6e148db66502866b3df8 /qooxdoo/source/class/Smokeping/ui/Zoomer.js | |
parent | 7b131fd1e445b836af83a4dbeb79dd91be06bbdb (diff) | |
download | smokeping-3d2d01044276848e16d61550e090d1e5001be7de.tar.gz smokeping-3d2d01044276848e16d61550e090d1e5001be7de.tar.xz |
removed useless debug messages
Diffstat (limited to 'qooxdoo/source/class/Smokeping/ui/Zoomer.js')
-rw-r--r-- | qooxdoo/source/class/Smokeping/ui/Zoomer.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qooxdoo/source/class/Smokeping/ui/Zoomer.js b/qooxdoo/source/class/Smokeping/ui/Zoomer.js index c1aab5d..fcc3559 100644 --- a/qooxdoo/source/class/Smokeping/ui/Zoomer.js +++ b/qooxdoo/source/class/Smokeping/ui/Zoomer.js @@ -32,7 +32,6 @@ qx.Class.define('Smokeping.ui.Zoomer', */ construct: function (target,width,height,top,right) { - this.debug('hell'); this._target = target; this._width = width; this._height = height+1; // some where the calc is 1 off. this fixes it @@ -73,7 +72,6 @@ qx.Class.define('Smokeping.ui.Zoomer', this._target.addEventListener("mousedown", this._zoom_start,this); this._target.addEventListener("mousemove", this._zoom_move,this); this._target.addEventListener("mouseup", this._zoom_end,this); - this.debug('got zoomer'); }, members: { |