Jakub T. Jankiewicz
Jakub T. Jankiewicz
In jQuery 3 the visible pseudo selector look like this: ```javascript jQuery.expr.pseudos.visible = function( elem ) { return !!( elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length ); }; ``` so I've used...
@OmbraDiFenice this function is not recursive, that visible variable is kind of useless. You will never end with the second branch of the conditional operator. Unless you call it on...
I think that, I've made mistake in config. The library work after running it with browserify. But still I don't understand why the library doesn't provide UMD so you can...
@shadow-light solution works: ```javascript export default { input: "src/lips.js", output: { name: "lips", file: "dist/lips.js", format: "umd", globals: { "@babel/runtime/regenerator": "regeneratorRuntime" }, manualChunks: () => 'everything.js' }, ... }; ```...
I found library that do this right http://matthewbj.github.com/Colors/
Other solution is to modify the library: instead of: ```php return $data->response; ``` use ```php return $data; ``` that way you will have access to cursor information see https://disqus.com/api/docs/cursors/ PS:...
after removing ->response I use this code to fetch all data. ```php function save($fname, $obj) { $f = fopen($fname, 'w'); fwrite($f, json_encode($obj, JSON_PRETTY_PRINT)); fclose($f); } require('disqusapi/disqusapi.php'); $disqus = new DisqusAPI('');...
Does CBOR-X support compression? I've implemented packing on data using CBOR but the file is not compressed. The ratio is 198KB unpack and 35KB when gziped (I have data with...
For the browser, simple compression built-in may be smaller than the whole zip library.
Sorry, I'm not familiar with mutex code. Do you want to take a look and see if you can fix the issue?