search for: totop

Displaying 4 results from an estimated 4 matches for "totop".

Did you mean: toto
2005 Nov 21
0
New Core Effect
...Effect.Adjust = Class.create(); Object.extend(Object.extend(Effect.Adjust.prototype, Effect.Base.prototype), { initialize: function(element, property) { this.element = $(element); this.property = property; var options = Object.extend({ toRight: null, toLeft: null, toTop: null, toBottom: null }, arguments[2] || {}); this.originalRight = parseFloat(Element.getStyle(this.element, property + ''-right'') || ''0''); this.originalLeft = parseFloat(Element.getStyle(this.element, property + ''-left'...
2006 Feb 08
6
Effect Help
I posted the following earlier: "I need a way to do a blind up that makes the element APPEAR and a blind down that makes the element DISAPPEAR. In essence, the opposite of the current blindup/blinddown. Thoughts?" I think somebody responded in Dutch. Anyone else have any ideas? -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288
2009 Jul 07
0
[PATCH server] Update app to work with rails 2.3.2
...is.update(pos); + dispatch(this, 'afterUpdate'); + } + }; + })(); this.event('beforeStart'); if (!this.options.sync) @@ -392,7 +399,7 @@ Effect.Move = Class.create(Effect.Base, { // for backwards compatibility Effect.MoveBy = function(element, toTop, toLeft) { - return new Effect.Move(element, + return new Effect.Move(element, Object.extend({ x: toLeft, y: toTop }, arguments[3] || { })); }; @@ -507,17 +514,16 @@ Effect.Highlight = Class.create(Effect.Base, { Effect.ScrollTo = function(element) { var options = arguments[1] || {...
2009 Jul 20
9
Upgrade server to run on Rails 2.3.2/F11
Note that one of the 8 patches (#6) will be sent separately in reply to this email, as some of the replaced lines are too long, so git won't let me send the email. However, there is nothing wrong with that patch, and it should be applied in the sequence listed below. Note also that I assume this will be tested on a clean f11 install, rather than an upgrade of an existing ovirt server