Snapshot
* resolves problem with relative and absolute urls
* adds basic tests for caja css parser
http://codereview.appspot.com/26046/diff/4006/5014
File
features/src/main/javascript/features/opensocial-reference/container.js
(right):
http://codereview.appspot.com/26046/diff/4006/5014#newcode543
Line 543: return callback && function tamedCallback(args) { return
$v.cf(callback, [ args ]); };
On 2009/03/15 12:23:43, ben wrote:
As I suggested on IM, the correct version of this looks like:
function tameCallback($v, callback) {
return callback && function tamedCallback() {
return $v.cf(callback, Array.slice(arguments, 0));
};
};
I think!
Done.
http://codereview.appspot.com/26046