Łukasz Jagodziński

Results 144 comments of Łukasz Jagodziński
trafficstars

@benjamn yes it will be hard to achieve perfect tree shaking but if it goes about performance, could we make it optional with some extra flag? And only perform it...

@prachik2 it's very old repository, for the old Meteor version so it's not gonna work. I'm not using Heroku anymore but I think that you should find some working buildpacks....

It would be nice to have event called when all the files in the queue are uploaded not only one file. Now I have to check in the collection if...

I have one more question. What exactly is the callback from `Image.insert` function? ``` js Images.insert(fsFile, function(err, image) { console.log(image.url(), image.isUploaded()); }); ``` When I try calling `image.url()` or `image.isUploaded()`...

If anyone wants to implement `onUploaded` event on the client here is the instruction: ``` js Images.insert(fsFile, function(err, image) { var cursor = Images.find(image._id); var liveQuery = cursor.observe({ changed: function(newImage,...

Ok thanks for clarification. Actually I need information about when uploading is finished. The code which I've posted just works for me. I could try making client side events but...

Actually there is `uploaded` [event emitted here](https://github.com/CollectionFS/Meteor-cfs-upload-http/blob/master/upload-http-client.js#L164) and I can hook into it. But when I check returned value of `isUploaded()` function in the callback then I get `false`. So...

But is it possible using DDP to call some method from the server to the client? I think it's not possible right now. If it will be available in the...

@ncubica whatever works for you :). There are some errors in CollectionFS like for example the `isUploaded` function that returns `true` when it shouldn't. I don't remember in details how...

Does it need to be md5 hash? Could it be just something like `table1`, `table2`, `table3` ... whenever a new table name has to be used? I don't think there...