Matthieu Barthel
Matthieu Barthel
Same here
I just found an easy solution : ``` @import "photoswipe/photoswipe" @import "photoswipe/default-skin/default-skin" ```
As a workarround, I use socat to forward IPV4/IPV6 requests to traefik, this is quite simple (working on latest Ubuntu/Debian at least) : 1. Install socat with your package manager...
I just had this error too, it looks like the last version of Globalize includes the patch that was needed in master, so just update your Gemfile: ``` gem 'globalize3'...
Sorry my stucked bundler issue was not related to spree_multi_lingual, it was my fault ;)
Did you specify the 1-3-stable branch ? For me spree_multi_lingual works just fine. ``` gem 'spree_multi_lingual', git: "[email protected]:jipiboily/spree_multi_lingual.git", branch: '1-3-stable' ```
Hi, I'm also in need of a Google Map implementation for Angular. The biggest issue I have with Google Map is memory leaks, every time you instantiate a map it...
Hi, I worked on the memory leak issue and came up with a proof of concept: http://plnkr.co/edit/zxhJgOQEhPxPAX9AUCGs?p=preview It simply reuse the same map instead of instantiating a new one every...
@zatmania I got a similar issue, you need to remove the old docker-compose command (`which docker-compose` and remote it), and [install](https://docs.docker.com/compose/install/linux/) the new compose plugin if you don't already have...
I got it working by not assigning the defaults value in the options declaration: ```nix packages.gitlab-rake = mkPackageOption pkgs "gitlab-rake" { }; packages.gitlab-rails = mkPackageOption pkgs "gitlab-rails" { }; ```...