Konstantin Nikiforov

Results 14 comments of Konstantin Nikiforov

Please describe BLE scanning options. Problem may relate to [android-10 issues](https://github.com/don/cordova-plugin-ble-central/issues/754). For background scanning you should **always** define at least one `ServiceUUID` of target peripherals. For bg.scanning on `iOS` you...

Try something like this: `this.ble.scan(['faa1'], 5)...` `'faa1'` - **string**, not number - an example ServiceUUID 0xFAA1.

Make things working on `leaflet-src.esm.js` and without `window.L`: - `Leaflet.markercluster-1.3.0` - `leaflet-1.3.2` (NOT 1.3.3 or 1.3.1), see [leaflet#6239](https://github.com/Leaflet/Leaflet/pull/6239) - Need some shims using import/export loaders: ``` import Leaflet from 'leaflet'...

@japgolly, it looks like, there are an issues with travis-ci build, not related to this commit: ``` [error] phantomjs: error while loading shared libraries: libicui18n.so.48: cannot open shared object file:...

I've suddenly found very simple workaround in docs: ``` fontFamily.attr := "times-new-roman" ``` Close this PR?

@dneades Yes, thanks. It looks like, `:=` also works without warning against `fontFamily.attr`.

@dneades Thanks for response. I agree, using `fontFamily` looks unclear/tricky for scalaCSS end-users. Will wait for @japgolly 's opinion.

Observed another possible-dangerous situation with using `:=` or `:=?` against `fontFamily`. CSS `font-family` may contain comma-separated sequence of names, some of names may need quoting, for example: ``` font-family: verdana,...

Just strip out all useless spaces during play `stage` including identation is enought. For example, i'm using `grunt` with `replace` task against twirl templates for minification during `stage` (but buggy...

> you want to achieve is minification Yes and no. Full minification of twirl templates is not possible, because they are stops to compile. My solution with "zero identation" and...