[jquery-dev] Re: Color library

2009-04-04 Thread Mark Gibson
Nice one Daniel, I'll check it out when I get time - gonna have to do a bit of a crash course in git first :) 2009/4/2 Daniel Friesen nadir.seen.f...@gmail.com: I started a GitHub repo: http://github.com/dantman/jquery.color/tree/master I also added full rgb support for alpha values.

[jquery-dev] Re: Color library

2009-04-04 Thread Daniel Friesen
1) Signup for a open source account on github 2) On http://github.com/dantman/jquery.color/tree/master hit the fork button to create your own (git is distributed) 3) Checkout your own private repo after running the config commands github suggests, using `git clone

[jquery-dev] Re: Not working Properly in Mozila

2009-04-04 Thread Gilles
Also you might want to add: script src=jquery-1.3.2.js type=text/javascript/script before all the other script tags, so you actually load JQuery before trying to use it :) On Apr 3, 5:46 pm, David Zhou da...@nodnod.net wrote: On Fri, Apr 3, 2009 at 8:42 AM, Dev ajoymahat...@gmail.com wrote:

[jquery-dev] Re: Not working Properly in Mozila

2009-04-04 Thread Gilles
unless you packed it in jquery-fadeout.js ofc :) On Apr 4, 3:36 pm, Gilles gil...@netxtra.net wrote: Also you might want to add: script src=jquery-1.3.2.js type=text/javascript/script before all the other script tags, so you actually load JQuery before trying to use it :) On Apr 3, 5:46 

[jquery-dev] Automatic switching to overflow hidden during animation

2009-04-04 Thread kofkof
Hello all, I have two questions regarding this portion of the animate() method source code: /**/ for ( p in prop ) { [...] if ( ( p == height || p == width ) this.style ) { [...] // Make sure that nothing sneaks out

[jquery-dev] Problem whit resize

2009-04-04 Thread Antonio Feliziani
hi, i'm italian developer, i use jquery to yesterday, :) ...i have try to write my function to resize a div some a windows whit a varible difference to height of header, footer and more.. the script is this : function RidimenzionaDivContent() { var header = 50; var footer =

[jquery-dev] Re: Improvements to .each()

2009-04-04 Thread DBJDBJ
Plugins use $.each() with third argument, to pass things. For example: jquery.treeview.async.js --DBJDBJ On Apr 4, 1:04 pm, John Resig jere...@gmail.com wrote: Sure, I think that's reasonable - thanks for the code. I've already been working to remove most usage of .each() internally, in

[jquery-dev] Re: Improvements to .each()

2009-04-04 Thread Matt Kruse
On Apr 4, 10:44 am, DBJDBJ dbj...@gmail.com wrote: Plugins use $.each() with third argument, to pass things. For example: jquery.treeview.async.js Then the comment args is for internal usage only isn't quite true? :) Is that method signature in the public API? If not, then using it is

[jquery-dev] bug report: animate width not working properly on Webkit? (1.3.2 vs. 1.2.6/1.3.1)

2009-04-04 Thread Julián Landerreche
Hi again, this bug seems to affect just Webkit (Safari/Chrome) browsers. The thing have been working fine with jQuery 1.2.6 to jQuery 1.3.1 It begun to fail with jQuery 1.3.2. == Testing environment == - Working version (jQuery 1.2.6/1.3.1):

[jquery-dev] Re: Pages stay blank with 1.3.1 being a userjs on Opera

2009-04-04 Thread helianthus
Hey I found out where it goes wrong. It is at line 3177 of jquery-1.3.2.js, where the following code is written: root.insertBefore( script, root.firstChild ); After commenting it out, the page loads without problems. John, is it enough info for you fix it?