Klemen Slavič
Klemen Slavič
It's a hack for Chrome 14 (jagged edges when rotating in 2D), but affects all webkits, yes. So far, I've been using this with positive outcomes, though it's a tradeoff...
Yikes. Just read the chromium issue thread. Thanks for those pointers!
+1, in HTML5 apps, this is a blocker issue, since no widgets can use HTML5 elements in their templates; the fix by [andy-clusta](https://github.com/andy-clusta) did help, but would love to see...
I've done some more testing on a live example; seems the simple wrapping with innershiv doesn't work correctly, since instead of DOM elements, it returns a document fragment that botches...
@[andy-clusta](https://github.com/andy-clusta): I've modified your script a bit (added function name to avoid having the `var` declarations) and added innershiv to the file: https://gist.github.com/822134
If it helps, I've noticed that domains generally prefix the generated hangout ID, meaning your URL could be: ``` https://plus.google.com/hangouts/_//id ``` There's also a query string parameter `authuser=n` which specifies...
Not sure, I was just talking about the URLs generated for G for domain hangouts, I may be misunderstanding the problem. _EDIT_: Just checked the generated URL by visiting `https://plus.google.com/hangouts/_/`,...
Oh, I see. So something like ``` export HUBOT_GOOGLE_HANGOUTS_DOMAIN='' ``` would result in ``` https://plus.google.com/hangouts/_// ``` ... which doesn't work. Maybe filter the double slash in the plugin code?
Has anybody tried the #9 solution?
Just for reference, here is how [`benchmark.js`](https://benchmarkjs.com/) approaches this: - https://benchmarkjs.com/docs/#prototype_setup - https://benchmarkjs.com/docs/#prototype_teardown [`Matcha`](https://github.com/logicalparadox/matcha) approaches this similarly: - https://github.com/logicalparadox/matcha#setupteardown Alternatively, [`nanobench`](https://github.com/mafintosh/nanobench) offers marker functions to mark blocks to benchmark, eliminating...