Mike Sherov
Mike Sherov
I wan to transform the following: ``` a.fn(b, c); a.fn(b); a.fn(); ``` to ``` fn2(a, b, c); fn2(a, b); fn2(a); ``` In order to do so, I attempted the following...
From the readme: ``` //undefined obj or key returns undefined, unless a default is supplied delve(undefined, 'a.b.c') === undefined; delve(undefined, 'a.b.c', 'foo') === 'foo'; delve(obj, undefined, 'foo') === 'foo'; ```
Before: ``` 122 B: dlv.js.gz 91 B: dlv.js.br 121 B: dlv.es.js.gz 97 B: dlv.es.js.br 198 B: dlv.umd.js.gz 160 B: dlv.umd.js.br ``` After: ``` 117 B: dlv.js.gz 82 B: dlv.js.br 116...
It locks in the sense that no other callbacks will ever be called in the deferred, per @jaubourg Please see http://bugs.jquery.com/ticket/11292 for more information
original ticket: http://bugs.jquery.com/ticket/12362 Related: http://bugs.jquery.com/ticket/ The above bug has been closed but the documentation is now misleading again for jQuery 1.8.0 (critically, 1.5+). The documentation reads: ``` error This handler...
``` $.ajaxSetup({ converters: { "mycustomtype json": function (result) { //do stuff return newresult; } } }); ``` was not working. The solution needed was: ``` $.ajaxSetup({ contents: { mycustomtype: /mycustomtype/...
As it stands, after the squashed commit is attempted to be pushed to the remote, pulley doesn't check that this was done successfully before leaving a comment and closing the...
Now that config.json is a proper JSON document (no comments), the config options need to be clearly explained in the README.
This will allow us to not rely on argument order for CLI parsing (in case a branch was named "done"). This is a current blocker for extending the CLI stuff.
Would be nice to create a pull request from the command line on the current branch.