I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All works well, except that for a split second in between, the element''s display becomes ''none'' and the other menu item jump into the space. I haven''t been able to find any way to force an element to retain ''display: block'' or ''display: inline'' after completing an animation like SlideUp or Fade. Any thoughts? -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
You could do: new Effect.SlideUp(element, { to: 0.01 }); That way it''ll only slide up until there is 1% showing, and not completely remove it. Then, on the reverse do: new Effect.SlideDown(element, { from: 0.01 }); Or at least that *should* work. Good luck. Greg ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 11:28 AM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: [Rails-spinoffs] Urgently Need Solution I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All works well, except that for a split second in between, the element''s display becomes ''none'' and the other menu item jump into the space. I haven''t been able to find any way to force an element to retain ''display: block'' or ''display: inline'' after completing an animation like SlideUp or Fade. Any thoughts? -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Using to: x doesn''t work. The element still disappears after it reaches its desired destination. On 2/6/06, Gregory Hill <Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote:> > You could do: > > new Effect.SlideUp(element, { to: 0.01 }); > > > > That way it''ll only slide up until there is 1% showing, and not completely > remove it. > > > > Then, on the reverse do: > new Effect.SlideDown(element, { from: 0.01 }); > > > > Or at least that **should** work. > > > > Good luck. > > > > Greg > > > ------------------------------ > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] *On Behalf Of *Yehuda Katz > *Sent:* Monday, February 06, 2006 11:28 AM > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > *Subject:* [Rails-spinoffs] Urgently Need Solution > > > > I''m using scriptaculous'' SlideUp and SlideDown effects to animate a menu. > Specifically, I SlideUp, make some CSS changes, and SlideDown. All works > well, except that for a split second in between, the element''s display > becomes ''none'' and the other menu item jump into the space. I haven''t been > able to find any way to force an element to retain ''display: block'' or > ''display: inline'' after completing an animation like SlideUp or Fade. > > Any thoughts? > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
It seems to be a side-effect of the makeClipping commend in Effect.BlindDown. When I comment it out, I no longer have the problem, but I do need the clipping behavior. Any thoughts? On 2/6/06, Yehuda Katz <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > Using to: x doesn''t work. The element still disappears after it reaches > its desired destination. > > On 2/6/06, Gregory Hill < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: > > > You could do: > > > > new Effect.SlideUp(element, { to: 0.01 }); > > > > > > > > That way it''ll only slide up until there is 1% showing, and not > > completely remove it. > > > > > > > > Then, on the reverse do: > > new Effect.SlideDown(element, { from: 0.01 }); > > > > > > > > Or at least that **should** work. > > > > > > > > Good luck. > > > > > > > > Greg > > > > > > ------------------------------ > > > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] * On Behalf Of *Yehuda > > Katz > > *Sent:* Monday, February 06, 2006 11:28 AM > > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > *Subject:* [Rails-spinoffs] Urgently Need Solution > > > > > > > > I''m using scriptaculous'' SlideUp and SlideDown effects to animate a > > menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All > > works well, except that for a split second in between, the element''s display > > becomes ''none'' and the other menu item jump into the space. I haven''t been > > able to find any way to force an element to retain ''display: block'' or > > ''display: inline'' after completing an animation like SlideUp or Fade. > > > > Any thoughts? > > > > -- > > Yehuda Katz > > Web Developer > > (ph) 718.877.1325 > > (fax) 718.686.4288 > > > > _______________________________________________ > > Rails-spinoffs mailing list > > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > > > > > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
After further experimentation, it seems I needed to have the parameter: {to: 0.99}, not {to: 0.01} On 2/6/06, Yehuda Katz <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > It seems to be a side-effect of the makeClipping commend in > Effect.BlindDown. When I comment it out, I no longer have the problem, but > I do need the clipping behavior. Any thoughts? > > On 2/6/06, Yehuda Katz <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Using to: x doesn''t work. The element still disappears after it reaches > > its desired destination. > > > > On 2/6/06, Gregory Hill < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: > > > > > You could do: > > > > > > new Effect.SlideUp(element, { to: 0.01 }); > > > > > > > > > > > > That way it''ll only slide up until there is 1% showing, and not > > > completely remove it. > > > > > > > > > > > > Then, on the reverse do: > > > new Effect.SlideDown(element, { from: 0.01 }); > > > > > > > > > > > > Or at least that **should** work. > > > > > > > > > > > > Good luck. > > > > > > > > > > > > Greg > > > > > > > > > ------------------------------ > > > > > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > > > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] * On Behalf Of *Yehuda > > > Katz > > > *Sent:* Monday, February 06, 2006 11:28 AM > > > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > *Subject:* [Rails-spinoffs] Urgently Need Solution > > > > > > > > > > > > I''m using scriptaculous'' SlideUp and SlideDown effects to animate a > > > menu. Specifically, I SlideUp, make some CSS changes, and SlideDown. All > > > works well, except that for a split second in between, the element''s display > > > becomes ''none'' and the other menu item jump into the space. I haven''t been > > > able to find any way to force an element to retain ''display: block'' or > > > ''display: inline'' after completing an animation like SlideUp or Fade. > > > > > > Any thoughts? > > > > > > -- > > > Yehuda Katz > > > Web Developer > > > (ph) 718.877.1325 > > > (fax) 718.686.4288 > > > > > > _______________________________________________ > > > Rails-spinoffs mailing list > > > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > > > > > > > > > > > > -- > > Yehuda Katz > > Web Developer > > (ph) 718.877.1325 > > (fax) 718.686.4288 > > > > > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
That''s interesting. I just assumed it would be the reverse for effects that make an element disappear. I believe Effect.Fade works that way, but maybe I''m just smoking something. Anyhoo, good to know. ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 2:58 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Urgently Need Solution After further experimentation, it seems I needed to have the parameter: {to: 0.99}, not {to: 0.01} On 2/6/06, Yehuda Katz < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mailto:wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: It seems to be a side-effect of the makeClipping commend in Effect.BlindDown. When I comment it out, I no longer have the problem, but I do need the clipping behavior. Any thoughts? _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
One more question for today: How do I trigger a function after an effect has completed? On 2/6/06, Gregory Hill <Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote:> > That''s interesting. I just assumed it would be the reverse for effects > that make an element disappear. I believe Effect.Fade works that way, but > maybe I''m just smoking something. Anyhoo, good to know. > > > ------------------------------ > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] *On Behalf Of *Yehuda Katz > *Sent:* Monday, February 06, 2006 2:58 PM > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > *Subject:* Re: [Rails-spinoffs] Urgently Need Solution > > > > After further experimentation, it seems I needed to have the parameter: > {to: 0.99}, not {to: 0.01} > > On 2/6/06, *Yehuda Katz* < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > It seems to be a side-effect of the makeClipping commend in > Effect.BlindDown. When I comment it out, I no longer have the problem, but > I do need the clipping behavior. Any thoughts? > > > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
I''ve been able to do it with: the option afterFinishInternal. On 2/6/06, Yehuda Katz <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > One more question for today: How do I trigger a function after an effect > has completed? > > On 2/6/06, Gregory Hill < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: > > > > That''s interesting. I just assumed it would be the reverse for effects > > that make an element disappear. I believe Effect.Fade works that way, > > but maybe I''m just smoking something. Anyhoo, good to know. > > > > > > ------------------------------ > > > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] * On Behalf Of *Yehuda > > Katz > > *Sent:* Monday, February 06, 2006 2:58 PM > > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > *Subject:* Re: [Rails-spinoffs] Urgently Need Solution > > > > > > > > After further experimentation, it seems I needed to have the parameter: > > {to: 0.99}, not {to: 0.01} > > > > On 2/6/06, *Yehuda Katz* < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > It seems to be a side-effect of the makeClipping commend in > > Effect.BlindDown. When I comment it out, I no longer have the problem, > > but I do need the clipping behavior. Any thoughts? > > > > > > > > _______________________________________________ > > Rails-spinoffs mailing list > > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > > > > > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
http://wiki.script.aculo.us/scriptaculous/show/CoreEffects The documentation has a list of callback functions available to all effects. ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 3:07 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Urgently Need Solution One more question for today: How do I trigger a function after an effect has completed? On 2/6/06, Gregory Hill < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: That''s interesting. I just assumed it would be the reverse for effects that make an element disappear. I believe Effect.Fade works that way, but maybe I''m just smoking something. Anyhoo, good to know. ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 2:58 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Urgently Need Solution After further experimentation, it seems I needed to have the parameter: {to: 0.99}, not {to: 0.01} On 2/6/06, Yehuda Katz < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mailto:wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: It seems to be a side-effect of the makeClipping commend in Effect.BlindDown. When I comment it out, I no longer have the problem, but I do need the clipping behavior. Any thoughts? _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Um, afterFinishInternal or anything else marked ''internal'' is something you generally don''t want to mess with, as it means it''s internal to the class. afterFinish is the proper option you are looking for, which is listed on the page I sent. ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 3:19 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Urgently Need Solution I''ve been able to do it with: the option afterFinishInternal. On 2/6/06, Yehuda Katz <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: One more question for today: How do I trigger a function after an effect has completed? On 2/6/06, Gregory Hill < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: That''s interesting. I just assumed it would be the reverse for effects that make an element disappear. I believe Effect.Fade works that way, but maybe I''m just smoking something. Anyhoo, good to know. ________________________________ From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Yehuda Katz Sent: Monday, February 06, 2006 2:58 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Urgently Need Solution After further experimentation, it seems I needed to have the parameter: {to: 0.99}, not {to: 0.01} On 2/6/06, Yehuda Katz < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org <mailto:wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > wrote: It seems to be a side-effect of the makeClipping commend in Effect.BlindDown. When I comment it out, I no longer have the problem, but I do need the clipping behavior. Any thoughts? _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 -- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Yup. I noticed that after I sent it. The internal version worked, but you''re right. On 2/6/06, Gregory Hill <Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote:> > Um, afterFinishInternal or anything else marked ''internal'' is something > you generally don''t want to mess with, as it means it''s internal to the > class. > > > > afterFinish is the proper option you are looking for, which is listed on > the page I sent. > > > > > ------------------------------ > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] *On Behalf Of *Yehuda Katz > *Sent:* Monday, February 06, 2006 3:19 PM > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > *Subject:* Re: [Rails-spinoffs] Urgently Need Solution > > > > I''ve been able to do it with: the option afterFinishInternal. > > On 2/6/06, *Yehuda Katz* <wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > One more question for today: How do I trigger a function *after *an effect > has completed? > > On 2/6/06, *Gregory Hill* < Gregory_Hill-l9nu40+TWxQ@public.gmane.org> wrote: > > That''s interesting. I just assumed it would be the reverse for effects > that make an element disappear. I believe Effect.Fade works that way, but > maybe I''m just smoking something. Anyhoo, good to know. > > > ------------------------------ > > *From:* rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto: > rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] *On Behalf Of *Yehuda Katz > *Sent:* Monday, February 06, 2006 2:58 PM > *To:* rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > *Subject:* Re: [Rails-spinoffs] Urgently Need Solution > > > > After further experimentation, it seems I needed to have the parameter: > {to: 0.99}, not {to: 0.01} > > On 2/6/06, *Yehuda Katz* < wycats-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > It seems to be a side-effect of the makeClipping commend in > Effect.BlindDown. When I comment it out, I no longer have the problem, but > I do need the clipping behavior. Any thoughts? > > > > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > > > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 > > > > > -- > Yehuda Katz > Web Developer > (ph) 718.877.1325 > (fax) 718.686.4288 > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > > >-- Yehuda Katz Web Developer (ph) 718.877.1325 (fax) 718.686.4288 _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs