[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
Original Message - > From: "Rafael M Ximenes" > To: "Prototype & script.aculo.us" > Sent: Thursday, June 18, 2009 6:23 PM > Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) > > Have you tried to move the orange blocks? > &g

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Alex McAuley
yer everything moves for me - Original Message - From: "Rafael M Ximenes" To: "Prototype & script.aculo.us" Sent: Thursday, June 18, 2009 6:23 PM Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) Have you tried to move the orange b

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Maarten
Depending on which browsers your website needs to be compatible with, I'd recommend using a pure CSS solution: .rounded { -webkit-border-radius: 5px; /* Safari */ -moz-border-radius: 5px;/* Firefox */ } For Internet Explorer you could use some extra span elements in combinati

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
at page works fine for me > > > > - Original Message - > From: "Rafael M Ximenes" > To: "Prototype & script.aculo.us" > Sent: Thursday, June 18, 2009 4:13 PM > Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) >

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Alex McAuley
that page works fine for me - Original Message - From: "Rafael M Ximenes" To: "Prototype & script.aculo.us" Sent: Thursday, June 18, 2009 4:13 PM Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) Nop. Any error. But: Now I've

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
so which errors do they throw? > > Alex > > > > - Original Message - > From: "Rafael M Ximenes" > To: "Prototype & script.aculo.us" > Sent: Thursday, June 18, 2009 3:19 PM > Subject: [Proto-Scripty] Re: Curvy Corners + draggables (scr

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Alex McAuley
Does IE or FF throw any errors and if so which errors do they throw? Alex - Original Message - From: "Rafael M Ximenes" To: "Prototype & script.aculo.us" Sent: Thursday, June 18, 2009 3:19 PM Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.acul

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
pects (element or array) > > }); > > HTH > .. > > > > - Original Message ----- > From: "Rafael M Ximenes" > To: "Prototype & script.aculo.us" > Sent: Thursday, June 18, 2009 2:35 PM > Subject: [Proto-Scripty] Re: Curvy Corners + drag

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Alex McAuley
xpects (element or array) }); HTH .. - Original Message - From: "Rafael M Ximenes" To: "Prototype & script.aculo.us" Sent: Thursday, June 18, 2009 2:35 PM Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) Hey, guys. I know both of your

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
Hey, guys. I know both of your suggestions (type correction and don't array) but I just recreate the code here, just an error on type. My code, in app is correct (length). Thanks, anyway. Waiting for a suggestion to solve the real problem. :D On Jun 18, 10:05 am, "T.J. Crowder" wrote: > Hi, >

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread T.J. Crowder
Hi, That code looks...unexamined. In addition to the typo Alex pointed out (which will prevent it from ever entering the loop, presumably), there's the pretty major issue of what it would do inside the loop if it ever entered it: Repeatedly re-search for elements of class "drag" and then pass a

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Alex McAuley
there is a typo in that code !!! for (var i=0; i To: "Prototype & script.aculo.us" Sent: Thursday, June 18, 2009 1:36 PM Subject: [Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us) Well. Still with the code provided by the author's site, the important

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-18 Thread Rafael M Ximenes
Well. Still with the code provided by the author's site, the important section of code was: function () { ... var drags = $$('.drag'); for (var i=0; i wrote: > Before I take a look at your issue... I have a rewrite of CurvyCorners that > i did that makes it run way faster. I was using it i

[Proto-Scripty] Re: Curvy Corners + draggables (script.aculo.us)

2009-06-17 Thread Rick Waldron
Before I take a look at your issue... I have a rewrite of CurvyCorners that i did that makes it run way faster. I was using it in a project and was annoyed by how long it took to render the corners. I can't say its any cleaner, but I corrected an unecessary loop. I've attched the rewrite to this em