[Proto-Scripty] Re: Awful Vacation...................Brad Vogel

2011-06-08 Thread Brad Vogel
Ignore this message. My email account was hacked. Sorry about that folks! For those of you using gmail, I highly recommend securing your account with 2 step verification: http://googleblog.blogspot.com/2011/02/advanced-sign-in-security-for-your.html Take care, Brad -- You received this message

[Proto-Scripty] Re: Feedback on a Mega Dropdown menu

2009-04-06 Thread brad
Thanks for the feedback. I'm really just trying to get a consistent cross-browser way of doing this. If you know a CSS solution that works in IE, I'd be happy to learn! I agree the fade effect is a bit contentious... On Apr 5, 9:27 pm, Pete Brown pete+goo...@lette.us wrote: I'm sure there

[Proto-Scripty] Feedback on a Mega Dropdown menu

2009-04-04 Thread brad
this differently. Thanks in advance! Brad --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group, send email to prototype-scriptaculous@googlegroups.com To unsubscribe

[Proto-Scripty] Re: Hash#filter returns an Array?

2009-02-03 Thread Brad
? Especially if thats its behavior in ruby, which Prototype is supposed to be modeled after. On Feb 3, 4:59 am, T.J. Crowder t...@crowdersoftware.com wrote: Hi Brad, Sorry, I missed that Hash inherits from Enumerable (and I've filed a doc bug on it[1] and will fix it -- the doc page

[Proto-Scripty] Re: Hash#filter returns an Array?

2009-01-31 Thread Brad
Yup, found it - http://dev.rubyonrails.org/ticket/3592 It is indeed a bug in Prototype that hasn't been addressed. - Brad On Jan 30, 6:23 pm, kangax kan...@gmail.com wrote: On Jan 30, 6:05 pm, Brad bradavo...@gmail.com wrote: Why does Hash#filter return an Array instead of a Hash? It isn't

[Proto-Scripty] Hash#filter returns an Array?

2009-01-30 Thread Brad
Why does Hash#filter return an Array instead of a Hash? It isn't really a filter if it's returning another data type. Instead of $H({'a':1,'b':2,'c':3,'d':4}).filter(function(i) { return i.value % 2; }) that returns, [[a, 1], [c, 3]] I would expect it to return {a: 1, c: