valichek
valichek
Currently if generated code is not valid and fmt returns error, invalid code is written to stderr, so there should be additional steps executed to understand the problem - like...
Checked in FF and Chrome. Getting `TypeError: First argument must be a string, Buffer, ArrayBuffer, Array, or array-like object.` ``` this.sock.addEventListener('message', function(e) { self.emit('data', new Buffer(e.data)); }); ``` Here is...
Clickable area is broken after changing min value of Knob ``` javascript $target.trigger( 'configure', { min: newMinValue } ); $target.trigger('change'); ```
Now we get `malformed MIME header line: Primary script unknown` error on response like: ``` Primary script unknown Status: 404 Not Found X-Powered-By: PHP/7.0.1 Content-type: text/html; charset=UTF-8 File not found....
It's not possible to identify version of binary
Would be very useful to have some basic `gowrap version` command.
I use `copy-webpack-plugin`, and it started to throw errors. I have found that only `node-dir` npm have been updated recently to `0.1.17`. Installing `0.1.16` explicitly solves the problem with `copy-webpack-plugin`
**I'm submitting a feature request** Having possibility to redirect from route handler would be a nice feature For example sometimes I need redirect with some logic. This could look like...
When the modal is hidden with backdrop, showing property stay true, so it couldn't be triggered next time even if you handle modal event ``` javascript $(this.modal).on('hidden.bs.modal', (e) => {...
Queries with `(?)` are not valid since updated version from `1.1.6` to `1.1.7/1.1.8`, doesn't depend on go version ``` SELECT id FROM my_table WHERE id IN (?); ``` Getting `ERROR:...