Make sure javascript_expansions config option exists

This commit is contained in:
virusman 2013-01-23 00:33:44 +04:00
parent aac7105f04
commit de1acdf930

View File

@ -4,8 +4,10 @@ module Cocoon
class Engine < ::Rails::Engine class Engine < ::Rails::Engine
config.before_initialize do config.before_initialize do
if config.action_view.javascript_expansions
config.action_view.javascript_expansions[:cocoon] = %w(cocoon) config.action_view.javascript_expansions[:cocoon] = %w(cocoon)
end end
end
# configure our plugin on boot # configure our plugin on boot
initializer "cocoon.initialize" do |app| initializer "cocoon.initialize" do |app|