Bojan Hribernik

Results 54 comments of Bojan Hribernik

For me it works if I set pressed to false in swipeStart() if locked ``` javascript function swipeStart(coords, event) { // console.log('swipeStart', coords, event); if (locked || currentSlides.length

Easy solution to prevent reorder on mouse click is to add this line to Gridly.prototype.draggingEnd ``` Gridly.prototype.draggingEnded = function(event) { if (!this._draggable.dragged) return; // ... }); ``` I have also...

@thebigredgeek yeah I am busy these days, so go for it! I am already extending `HTTPFetchNetworkInterface` ([here](https://github.com/HriBB/apollo-upload-network-interface/blob/master/src/UploadNetworkInterface.js#L9)), so it should be easy to create a HOC to decorate existing interface....

@jaydenseric there is now way to make this project work with batching ATM. Personally I don't need it, but you are welcome to make a PR ;) Hopefully the apollo...

OK great! I've made you both collaborators on all three projects. What do you think about `lerna` and `typescript`?

Lerna allows you to have one repo but export multiple npm packages. Take a look at [graphql-server](https://github.com/apollostack/graphql-server), which uses it to publish multiple packages to npm: `graphql-server-core`, `graphql-server-express`, `graphql-server-koa` and...

Hmmm ... can we detect variable type from mutation? For example ... ``` const ADD_PROFILE_PICTURE = gql` mutation addProfilePicture($id: Int!, $file: UploadedFile!) { addProfilePicture(id: $id, file: $file) { id type...

@sandervanhooft take a look at [this](https://github.com/HriBB/apollo-upload-network-interface/blob/master/src/UploadNetworkInterface.js#L21) line. I am checking for the presence of `FileList`. There we need to add additional check for a single `File` or array or `File`s....

@jaydenseric I agree. Do you want to make a PR?