performance.
** Use standard Unicode codepoints for icon fonts
This is done via the [[https://korewanetadesu.com/pages/fontstandard.html][Font Standard]] icon font.
+** Work around incorrect Safari JIT generation.
+ Some details of the symptoms / likely-but-unproven cause at
+ https://korewanetadesu.com/safari-jit-bug.html.
* v1.2
** DONE Override the GPU blacklist on GNU/Linux
case 1: return function () { return f.call(this, arguments); };
default:
return function () {
- arguments[length - 1] = slice(arguments, length - 1);
- return f.apply(this, arguments);
+ var args = slice(arguments, 0, length - 1);
+ args.push(slice(arguments, length - 1));
+ return f.apply(this, args);
};
}
}