Pablo Cantero
Pablo Cantero
@roldugin great thanks. I'm not actively using influxdb-cli, but I will to check it. Meanwhile, would you be able to submit a PR? All `time_precision` references: https://github.com/phstc/influxdb-cli/search?utf8=%E2%9C%93&q=time_precision
Hi @luisdavim I tried to fix the `time_precision` error, but it seems like InfluxDB is all changed, it's no longer returning a hash [here](https://github.com/phstc/influxdb-cli/blob/master/bin/influxdb-cli#L68) and [`write_point` in the way I...
The workaround I'm using for now: ``` coffeescript # @drop.on 'open', @openHandler @drop.on 'close', @closeHandler @drop.target.addEventListener('click', @somethingINeedToDoBeforeOpenHandler) @drop.target.addEventListener('click', @openHandler) ```
hi @geekjuice Actually I'm looking for something like `onClick`, because it would guarantee that the drop is going to be opened due on a user interaction. `open` or `beforeOpen` does...
@geekjuice hm makes sense... like changing [here](https://github.com/HubSpot/drop/pull/120/files#diff-8b7a21ae42b059f2d76c6268488bf1d8R353) to pass the event along. ``` javascript if (typeof this.options.showOn !== 'undefined' && !this.options.showOn(event)) { return; } ``` Do you want me to...