Mike Cunneen
Mike Cunneen
@raix 3.0.3-rc.7 works for me on iOS10, iOS9 and android (with my pull request added; I haven't tried it without) on Meteor 1.4.1.1 @seifip try using my config package and...
Also @s7dhansh and @seifip : If you still get the error: ``` The "Push.appCollection" is empty - No clients have registred on the server yet ``` Then check your xcode...
@seifip thanks for the clarification; I'm not sure if this package supports notifications in the browser. They're listed as 'Partially Implemented' right at the very top on the [project home...
I too have had issues on a mac. Something to do with the interaction of `gpg` and `gpg2` and their key details. [This comment](./99#issuecomment-270179200) on Issue #99 had the answer...
I also managed to get git-crypt working transparently again, by exporting the secret key from gpg2 and importing it into gpg: ``` gpg2 --export-secret-keys -a --output dummy-example-com-secret.gpg [email protected] gpg2 --export...
There's a workaround, but it's a bit inelegant. It involves adding *all* of the encrypted files to the sparse checkout, just so we can decrypt the ones we want. ```bash...
Another, more elegant (but still imperfect), workaround is to use [multiple keys](https://github.com/AGWA/git-crypt/blob/master/doc/multiple_keys.md), with a different key being used to encrypt the files that will be in the sparse checkout.
@pwcreative here's a jsfiddle to replicate. It seems to depend upon the y-coordinate of the input field to which the date picker is attached i.e. if the input field is...
I've had some success by forcing the date input to scroll into the centre of the screen when it receives focus: ```js $(document).ready(function() { // initialize the datepicker $('.datepicker').datepicker() //...
@doughballs thanks for sharing this I'll give it a try! Is the `setTimeout` to stop the jerkiness that I was seeing with my earlier hack?