remove debugging code
[roojs1] / ux / Iscroll.js
index cf3829a..12b257d 100644 (file)
@@ -3,9 +3,10 @@
  * Released under MIT license, http://cubiq.org/license
  */
 
-namespace('Roo.ux');
+// should we even bother...???
+Roo.namespace('Roo.ux');
 
-    (function(){
+(function(){
     var m = Math,
         vendor = (/webkit/i).test(navigator.appVersion) ? 'webkit' :
             (/firefox/i).test(navigator.userAgent) ? 'Moz' :
@@ -49,14 +50,19 @@ namespace('Roo.ux');
         trnClose = has3d ? ',0)' : ')';
 
        // Constructor
-       Roo.ux.iScroll = function (el, options) {
+Roo.ux.iScroll = function (el, options) {
                var that = this,
                        doc = document,
                        i;
 
-               that.wrapper = typeof el == 'object' ? el : doc.getElementById(el);
+               
+        that.wrapper = typeof el == 'object' ? el : doc.getElementById(el);
+        
                that.wrapper.style.overflow = 'hidden';
                that.scroller = that.wrapper.children[0];
+        
+        
+        
 
                // Default options
                that.options = {
@@ -199,7 +205,10 @@ Roo.ux.iScroll.prototype = {
                        if (that.options.scrollbarClass) bar.className = that.options.scrollbarClass + dir.toUpperCase();
                        else bar.style.cssText = 'position:absolute;z-index:100;' + (dir == 'h' ? 'height:7px;bottom:1px;left:2px;right:' + (that.vScrollbar ? '7' : '2') + 'px' : 'width:7px;bottom:' + (that.hScrollbar ? '7' : '2') + 'px;top:2px;right:1px');
 
-                       bar.style.cssText += ';pointer-events:none;-' + vendor + '-transition-property:opacity;-' + vendor + '-transition-duration:' + (that.options.fadeScrollbar ? '350ms' : '0') + ';overflow:hidden;opacity:' + (that.options.hideScrollbar ? '0' : '1');
+                       bar.style.cssText += ';pointer-events:none;-' +
+                    vendor + '-transition-property:opacity;-' +
+                    vendor + '-transition-duration:' + (that.options.fadeScrollbar ? '350ms' : '0') +
+                    ';overflow:hidden;opacity:' + (that.options.hideScrollbar ? '0' : '1');
 
                        that.wrapper.appendChild(bar);
                        that[dir + 'ScrollbarWrapper'] = bar;