From 3d2d01044276848e16d61550e090d1e5001be7de Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Sun, 18 Nov 2007 22:16:29 +0000 Subject: removed useless debug messages --- qooxdoo/source/class/Smokeping/ui/Navigator.js | 4 ---- qooxdoo/source/class/Smokeping/ui/Zoomer.js | 2 -- 2 files changed, 6 deletions(-) (limited to 'qooxdoo/source/class') diff --git a/qooxdoo/source/class/Smokeping/ui/Navigator.js b/qooxdoo/source/class/Smokeping/ui/Navigator.js index 37042e4..4563115 100644 --- a/qooxdoo/source/class/Smokeping/ui/Navigator.js +++ b/qooxdoo/source/class/Smokeping/ui/Navigator.js @@ -48,8 +48,6 @@ qx.Class.define('Smokeping.ui.Navigator', // in this case _changeWidth: function(newWidth) { var diff = newWidth - this.getBoxWidth(); - this.debug(this.getBoxWidth()); - this.debug(this.getBoxHeight()); this.base(arguments, newWidth); this.add(this._loader); this._graph_width = this._graph_width + diff; @@ -90,10 +88,8 @@ qx.Class.define('Smokeping.ui.Navigator', qx.io.image.PreloaderManager.getInstance().remove(this._preloader); removeAll(); add(image); - this.debug('added image'); var zoomer = new Smokeping.ui.Zoomer(image,this._graph_width,this._graph_height,33,30); add(zoomer); - this.debug('added zoomer'); } } } 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: { -- cgit v1.2.3-24-g4f1b