Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-09 20:02:54 +01:00
Ensure SCSS compilation compatibility with core (#77)
* WIP: Fix for new Discourse * Ensure SCSS compilation compatibility with core Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
3bb244be79
Commit
fa73a18363
2 geänderte Dateien mit 12 neuen und 7 gelöschten Zeilen
|
@ -174,10 +174,15 @@ after_initialize do
|
||||||
::Wizard::Step.prepend CustomWizardStepExtension
|
::Wizard::Step.prepend CustomWizardStepExtension
|
||||||
|
|
||||||
full_path = "#{Rails.root}/plugins/discourse-custom-wizard/assets/stylesheets/wizard/wizard_custom.scss"
|
full_path = "#{Rails.root}/plugins/discourse-custom-wizard/assets/stylesheets/wizard/wizard_custom.scss"
|
||||||
|
if Stylesheet::Importer.respond_to?(:plugin_assets)
|
||||||
|
Stylesheet::Importer.plugin_assets['wizard_custom'] = Set[full_path]
|
||||||
|
else
|
||||||
|
# legacy method, Discourse 2.7.0.beta5 and below
|
||||||
DiscoursePluginRegistry.register_asset(full_path, {}, "wizard_custom")
|
DiscoursePluginRegistry.register_asset(full_path, {}, "wizard_custom")
|
||||||
Stylesheet::Importer.register_import("wizard_custom") do
|
Stylesheet::Importer.register_import("wizard_custom") do
|
||||||
import_files(DiscoursePluginRegistry.stylesheets["wizard_custom"])
|
import_files(DiscoursePluginRegistry.stylesheets["wizard_custom"])
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
|
||||||
CustomWizard::CustomField::CLASSES.keys.each do |klass|
|
CustomWizard::CustomField::CLASSES.keys.each do |klass|
|
||||||
add_model_callback(klass, :after_initialize) do
|
add_model_callback(klass, :after_initialize) do
|
||||||
|
|
|
@ -30,7 +30,7 @@
|
||||||
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
|
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
|
||||||
|
|
||||||
<meta name="discourse_theme_ids" content="<%= wizard_theme_ids&.join(",") %>">
|
<meta name="discourse_theme_ids" content="<%= wizard_theme_ids&.join(",") %>">
|
||||||
<meta name="discourse-base-uri" content="<%= Discourse.base_uri %>">
|
<meta name="discourse-base-uri" content="<%= Discourse.base_path %>">
|
||||||
|
|
||||||
<%= render partial: "layouts/head" %>
|
<%= render partial: "layouts/head" %>
|
||||||
<title><%= wizard_page_title %></title>
|
<title><%= wizard_page_title %></title>
|
||||||
|
|
Laden …
In neuem Issue referenzieren