[jquery-dev] Re: Plugin development question

2009-11-26 Thread Lukáš
Nevermind that, I figured it out, as always I didnt think of the simplest option. But I will reform my question to this. I create my own function. $.fn.dr = function(settings) { this.each(function(settings) { process(this, settings); });

[jquery-dev] Re: Ant build

2009-11-26 Thread Justin Meyer
Now it doesn't work: test/qunit/testrunner.js | 797 test/qunit/testsuite.css | 120 -- test/unit/selector.js| 52 +- 12 files changed, 3124 insertions(+), 3082 deletions(-) create mode 100644 .gitmodules delete mode 100644 Makefile delete mode 100644 libs/jquery.js create

[jquery-dev] Re: Ant build

2009-11-26 Thread Justin Meyer
Ah, git is by default CRLFing files. To turn it off: git config core.autocrlf false On Nov 25, 2:33 pm, Justin Meyer justinbme...@gmail.com wrote: It works now that I have updated to the latest jQuery. On Nov 25, 1:13 pm, Justin Meyer justinbme...@gmail.com wrote: it might be the qunit

[jquery-dev] Re: Plugin development question

2009-11-26 Thread Paul Irish
Hi, I have a little plugin factory script, based on some code from others.. I think it'll get you where you're trying to go: http://code.paulirish.com/sandbox/pluginfactory.js You can define those functions in an object literal (or in a constructor), and then reference the element with

[jquery-dev] Unable to pull qunit sizzle submodules in forked git repo

2009-11-26 Thread Mark Gibson
Hello, has anyone managed to build jQuery from a forked repository? The submodules won't pull in the clone of my forked repo, I can't work out why - 'make init' does nothing, all I get is this: Grabbing external dependencies... From g...@github.com:jollytoad/jquery * branchmaster

Re: [jquery-dev] Unable to pull qunit sizzle submodules in forked git repo

2009-11-26 Thread John Resig
Oof, I'm really not sure - I wonder if it has to do with having multiple remotes? I'm going to throw up the bat signal and see if we can get some clarification from the Github guys. --John On Thu, Nov 26, 2009 at 6:13 PM, Mark Gibson jollyt...@gmail.com wrote: Hello, has anyone managed to

Re: [jquery-dev] Re: Ant build

2009-11-26 Thread John Resig
Ah, git is by default CRLFing files.  To turn it off: git config core.autocrlf false That's... interesting. Yay git? --John -- You received this message because you are subscribed to the Google Groups jQuery Development group. To post to this group, send email to

Re: [jquery-dev] Re: Ant build

2009-11-26 Thread Daniel Friesen
Some info from google: http://www.kernel.org/pub/software/scm/git-core/docs/gitattributes.html#_checking_out_and_checking_in http://www.mail-archive.com/msys...@googlegroups.com/msg00093.html http://www.mail-archive.com/msys...@googlegroups.com/msg00088.html Looks like this can be solved in the