summaryrefslogtreecommitdiffstats
path: root/user_guide/nav
diff options
context:
space:
mode:
authorBarry Mieny <barry@mieny.com>2010-10-04 16:33:58 +0200
committerBarry Mieny <barry@mieny.com>2010-10-04 16:33:58 +0200
commitdd6719738936be31cdaa1758ca86d5eb14dcab3d (patch)
treeb5ef66e31b2d0f4f2c1cbccc367bde92c156e1f9 /user_guide/nav
parent3351fbc56cea19ec3dd603836beb0a420b1ded65 (diff)
Cleanup of stray spaces and tabs
Diffstat (limited to 'user_guide/nav')
-rwxr-xr-xuser_guide/nav/moo.fx.js4
-rwxr-xr-xuser_guide/nav/moo.fx.pack.js6
2 files changed, 5 insertions, 5 deletions
diff --git a/user_guide/nav/moo.fx.js b/user_guide/nav/moo.fx.js
index 53cfa925f..c80697fd2 100755
--- a/user_guide/nav/moo.fx.js
+++ b/user_guide/nav/moo.fx.js
@@ -71,7 +71,7 @@ fx.Layout.prototype = Object.extend(new fx.Base(), {
});
fx.Height = Class.create();
-Object.extend(Object.extend(fx.Height.prototype, fx.Layout.prototype), {
+Object.extend(Object.extend(fx.Height.prototype, fx.Layout.prototype), {
increase: function() {
this.el.style.height = this.now + "px";
},
@@ -83,7 +83,7 @@ Object.extend(Object.extend(fx.Height.prototype, fx.Layout.prototype), {
});
fx.Width = Class.create();
-Object.extend(Object.extend(fx.Width.prototype, fx.Layout.prototype), {
+Object.extend(Object.extend(fx.Width.prototype, fx.Layout.prototype), {
increase: function() {
this.el.style.width = this.now + "px";
},
diff --git a/user_guide/nav/moo.fx.pack.js b/user_guide/nav/moo.fx.pack.js
index 574f27cff..e2ce39927 100755
--- a/user_guide/nav/moo.fx.pack.js
+++ b/user_guide/nav/moo.fx.pack.js
@@ -113,7 +113,7 @@ fx.MultiFadeSize.prototype = Object.extend(new Multi(), {
this.el[i].fs.toggle(mode);
setTimeout(function(){el.fs.toggle(mode);}.bind(el), delay);
}
-
+
}
},
@@ -170,13 +170,13 @@ fx.RememberHeight.prototype = Object.extend(new Remember(), {
this.fx = new fx.Height(this.el, this.options);
this.prefix = 'height';
},
-
+
toggle: function(){
if (this.el.offsetHeight == 0) this.setCookie(this.el.scrollHeight);
else this.setCookie(0);
this.fx.toggle();
},
-
+
resize: function(to){
this.setCookie(this.el.offsetHeight+to);
this.fx.custom(this.el.offsetHeight,this.el.offsetHeight+to);