Serguei Cambour
Serguei Cambour
@bpaquet: thank you for sharing, I'll take a try.
I confirm. The original application.css rests empty and as result no CSS rues applied for anything. Either I need to copy the file manually or modify the gem itself: nifty-generators-0.4.6/lib/generators/nifty/layout/layout_generator.rb,...
Hi, Ryan! I fixed the headr translation as follows for the moment: ``` rhtml #in a form partial, for example t('errors.template.header', :model=> @user.class.model_name.human, :count=> @user.errors.count), :message => t('errors.template.body')) %> ```...
In yml translation file that I downloaded from https://github.com/svenfuchs/rails-i18n/tree/master/rails/locale, there is no more activerecord.errors.header but errors.template.header instead. The 'activerecord' tree is defined as follows: activerecord: models: user: "Utilisateur" attributes: user:...
The solution I came to and that worked for me was to create a `api_pagination.rb` file in `config/initializers` folder with the following settings: ``` ApiPagination.configure do |config| config.page_param do |params|...
`paginated_response_status` is just a helper defined in `controllers/concerns/response.rb`as follows: ``` module Response extend ActiveSupport::Concern ... def paginated_response_status(collection) collection.size > WillPaginate.per_page ? :partial_content : :ok end end ``` It does not...
Coming back to the issue, I created an [example app](https://github.com/belgoros/ember-foundation), - the navbar is completely broken there: I just took the [example of navbar](https://foundation.zurb.com/sites/docs/top-bar.html) code from Foundation site and copy-pasted...
I had the same problem and fixed it by removing proxy declaration in `~.npmrc` file.
@dwbutler Thank you, I've tried to set `sync: true` in my `staging.rb` file: ``` config.log_formatter = ::Logger::Formatter.new ... if ENV['RAILS_LOG_TO_STDOUT'].present? config.log_level = :info config.lograge.enabled = true config.lograge.base_controller_class = 'ActionController::API' config.lograge.formatter...
I tried to use use both of the suggested options (`matchTriggerWidth` and `renderInPlace`) and it does not work either: ``` # templates/application.hbs {{shop-select shops=shopService.shops aShop=currentShop.shop returnToDashBoard=(action "redirectToDashboard") matchTriggerWidth=false renderInPlace=true }}...