We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, our project requirement is to use 1.4.1 version, and there I have found a bug.
in file lib/princely/pdf_helper.rb:54
Following method has issue which you guys fixed already in the latest princely version.
Issue: It should do asset.to_s.gsub(".css","")
CURRENT
def asset_file_path(asset) stylesheet = stylesheet.to_s.gsub(".css","") File.join(config.stylesheets_dir, "#{stylesheet}.css") end
Need to fix this method for version 14.1. Can we change it to below code?
PROPOSED
def asset_file_path(asset) asset = asset.to_s.gsub(".css","") File.join(config.stylesheets_dir, "#{asset}.css") end
Using for Rails 3.0.0 Version
The text was updated successfully, but these errors were encountered:
please reply earliest possible
Sorry, something went wrong.
Please let me know, How soon we can do that?
No branches or pull requests
Hi, our project requirement is to use 1.4.1 version, and there I have found a bug.
in file lib/princely/pdf_helper.rb:54
Following method has issue which you guys fixed already in the latest princely version.
Issue: It should do asset.to_s.gsub(".css","")
CURRENT
Need to fix this method for version 14.1. Can we change it to below code?
PROPOSED
Using for Rails 3.0.0 Version
The text was updated successfully, but these errors were encountered: