summaryrefslogtreecommitdiffstats
path: root/qooxdoo/source
diff options
context:
space:
mode:
authorTobi Oetiker <tobi@oetiker.ch>2007-11-18 23:16:29 +0100
committerTobi Oetiker <tobi@oetiker.ch>2007-11-18 23:16:29 +0100
commit3d2d01044276848e16d61550e090d1e5001be7de (patch)
treef9079f03d2b02d42b4aa6e148db66502866b3df8 /qooxdoo/source
parent7b131fd1e445b836af83a4dbeb79dd91be06bbdb (diff)
downloadsmokeping-3d2d01044276848e16d61550e090d1e5001be7de.tar.gz
smokeping-3d2d01044276848e16d61550e090d1e5001be7de.tar.xz
removed useless debug messages
Diffstat (limited to 'qooxdoo/source')
-rw-r--r--qooxdoo/source/class/Smokeping/ui/Navigator.js4
-rw-r--r--qooxdoo/source/class/Smokeping/ui/Zoomer.js2
2 files changed, 0 insertions, 6 deletions
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: {