Ryan Bates

Results 175 comments of Ryan Bates

@NZKoz, could we add an escape method to 2-3-stable which does nothing unless enabled by this plugin or a config option? This way it will have no effect on existing...

@minaguib, this behavior of the `h()` method is very useful outside of legacy apps. It should still be used frequently in helper methods to ensure the HTML is escaped if...

@minaguib, good point, sometimes escaping safe html is intentional. Perhaps the `escape_html` method can be used for simple, consistent escaping. @jfine, you can use the raw method. link_to raw(username), ......

I am running into this as well. It's difficult to search for existing issues when they are spread across both GitHub and GitLab. I'd rather issues be on one or...

@jamesmartin Sure, something along these lines: ``` Item ``` Here the content of the `handle.svg` is inlined for every list item. If it's a complex SVG this could result in...

> how do you imagine the inline_svg API would work? @jamesmartin good question. In my example I included the svg on the same page but I think it would be...

For anyone wanting to do this, I've had good success using [i18n-tasks](https://github.com/glebm/i18n-tasks) to manage unused locales. You can run `i18n-tasks remove-unused` to remove locales which are not used. This only...

The performance issues which effect every page is a bummer, and I don’t know how you would optimize this except for reducing the amount of eager loading. Is there any...

> I think the calculation is done only once on every reload and all information will be then stored in the Wallaby::Map. Therefore, there shouldn't be any classes loading after...

@tian-im is it possible for Wallaby to only do its reloading for wallaby related requests? That would be ideal if we can't avoid the custom reloading.