Cris Ward
Cris Ward
My toolbar is in the main document, and I wish to edit a div inside an iframe. Passing the element into the constructor seems to work and content editable is...
If you do this ```coffeescript class Blah constructor:(@thing)-> @thing() method:-> thing = "hi" ``` Coffeescript compiles to ```javascript var Blah; Blah = class Blah { constructor(thing1) { this.thing = thing1;...
Make active links easy. eg ```html Home About ``` Not sure if there are any downsides to this?
It would be good to enable some options to only apply on first push / or perhaps if they don't already exist. (as per discussion here https://github.com/dokku/dokku/issues/2269) Env vars are...
If the application logs out too much information while being run by sentry it seems to lock up. The limit is quite high - 1024 character maybe?? If you have...
Not sure if you feel this fits within the scope of this module. But I'd quite like to wrap my database queries in a cache to prevent hitting the db...
This is based on the pull request #4073 and issue #1748 The idea is to allow web components to render to light dom. As this may be something you don't...
When I use a max-height css animation on a ng-repeat, the scroll-glue only scrolls to the height at the the first point in the animation. It would be nice if...
After reading over the code, I can't help thing kemal-session could be significantly simplified by just saving a single object. That is to say, removing all the strings, int32, int64,...
I noticed new 'empty' session objects get saved. As sessions are typically saved for an hour these can soon mount up, especially from clients which don't retain cookies (ie bots...