bootstrap-editable-rails
bootstrap-editable-rails copied to clipboard
In-place editing with Twitter Bootstrap for Rails
Hi, I'm receiving the following error: `undefined method 'start_with?' for /bootstrap-editable\/.*\.(?:png|gif)$/:Regexp` ``` def valid_asset_uri?(str) # Quick prefix check before attempting a full parse str.start_with?("file://".freeze) && parse_asset_uri(str) ? true : false...
Rails 6 seems to not like regexes anymore, making it necessary to use a globbing patter instead.
I'd like to be able to keep the code markup cleaner and DRYier and in some cases where I have a collection of editable stuff, it seems from 'bootstrap-editable-rails.js' that...
This is shipping a coffee script file, thus requiring the application to have coffee script included. That either shouldn't be the case, or coffee script should be listed as a...
Right now value2str does nothing to the value being passed in. This fix just casts the value to String before returning it.
When I include ``` //= require bootstrap-editable //= require bootstrap-editable-rails ``` in `application.js` and do `bundle exec rake assets:precompile` it doesn't load full calendar http://fullcalendar.io/ When I remove it, it...
Anyway to incorporate the bootstrap2 support of x-editable into the gem as well? https://github.com/vitalets/x-editable#cdn
This adds a view helper to generate a fully configured A tag using well-known Rails semantics, e.g.: ``` ```
Tested and works, tho I don't see a PATCH verb in the development log - but that may be a jQuery restriction.
Hi, this gem is working great and nice tutorial how to implement it, but how can I update nested attributes? Thanks