Josua Schmid

Results 18 comments of Josua Schmid

I'm on Rails 6.0.0 using slim 4.0.1. ERB errors are rendered in the `web-console`, some Slim errors are swallowed up. `better_errors` works as a replacement.

Well… I just did it (before someone else does) and added you ([email protected]) as an owner. Please remove me and my company from the owner list as soon as you...

I guess my issue is related: ```ruby class FilterDimension < ApplicationRecord has_many :filters has_many :filter_choices has_many :filter_ranges end class FilterChoice < ApplicationRecord belongs_to :filter_dimension end class FilterRange < ApplicationRecord belongs_to...

As of https://github.com/bassjobsen/Bootstrap-3-Typeahead/commit/4c97c581839d9db31a3b1ec6dabd8d7fd2709ff3 you can use arrow keys to select elements from the dropdown list. If you want to have the same visual feedback as with hovering, some CSS is...

Hey @ehwinter is this still a thing?

Hey @AntoineInsa is this still a thing? There are still some conflicts.

I just tried abusing a data URL for this: ```html ``` It works partially 🤣 The query parameters obviously become part of the answer. https://user-images.githubusercontent.com/245443/191965163-8efcc89e-3aeb-4fcd-85e1-becdcb511e6a.mp4

@das-g Haha, we're like-minded people.

Correct. At least _tracker_decorator_ should implement the _current_ method like that: ``` ruby def self.current(domain = nil) domain ||= Spree::Store.current.url Spree::Tracker.where(:active => true, :environment => Rails.env).joins(:store).where("spree_stores.url LIKE ?", "%#{domain}%").first end...