Daniel Richter
Daniel Richter
Hey @Dragony, This is awesome, thank you for taking a crack at installing this fresh. You nailed it! I'll button things up this weekend and get your feedback into the...
@Dragony @jmunozco Sorry for the delay, I need to wrap this PR up. FYI, this PR already works around the 3rd-party cookie issue by forcing the session id into the...
O hai! Yes, apologies.. I was already relying on this branch, so forgot about merging 😬 Have some Packagist issues to iron out before this is truly taggable/useful, but hopping...
You'll be my hero if you implement the same solution here. Rackspace is not happy with all the connections I'm currently opening..
+1 for putting base classes into the cache dir. According to the bundle guidelines [here](http://symfony.com/doc/current/cookbook/bundles/best_practices.html#directory-structure) the bundle directory should be read-only. As for automatically generating those classes, maybe that can...
@havvg I'm not sure base classes should be part of the repository. It seems they should be generated with the propel version that the project uses so you can take...
@akovalyov Awesome, thank you!
As a quick workaround I just extended things in my project: ```JS class MyPlacesAutocomplete extends PlacesAutocomplete { handleInputKeyDown(event) { if (event.key == 'Tab') { this.handleEnterKey() } super.handleInputKeyDown(event) } } ```
Along the same lines, when an input is towards the edge of a browser, the picker should probably position itself to stay within the browser. Currently it sticks out, making...
Ok, cool. So if I switch this to the "real" xml from the UPS api, and wrap the fixture loading into a re-usable class, this direction is acceptable? Have a...