diff --git a/bin/Controls/WallpaperTextArrow.js b/bin/Controls/WallpaperTextArrow.js
index f41d658c369f0becc35427147abe4871a460b6a5..8a7546e9cb49e16091d22d767464671e40d9c513 100644
--- a/bin/Controls/WallpaperTextArrow.js
+++ b/bin/Controls/WallpaperTextArrow.js
@@ -39,21 +39,12 @@ define('package/quiqqer/presentation-bricks/bin/Controls/WallpaperTextArrow', [
          * event : on import
          */
         $onImport: function () {
-
-            /*console.log(QUI.getScroll().y);
-
-            QUI.addEvent('scroll', function() {
-                console.log(QUI.getScroll().y);
-
-            })*/
-
             this.$Brick    = document.getElement('div[data-quiid="' + this.$uid + '"]');
             this.$Arrow    = this.$Brick.getElement('.wallpaperTextArrow-arrow-fa');
 
             this.$Arrow.addEvent('click', function () {
                 new Fx.Scroll(window).start(0, this.$Brick.getSize().y);
             }.bind(this))
-
         }
     });
 });