mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
18 lines
394 B
Plaintext
18 lines
394 B
Plaintext
<%
|
|
|
|
require_asset ("./main_include.js")
|
|
|
|
# Include plugin javascripts/handlebars templates
|
|
DiscoursePluginRegistry.javascripts.each { |js| require_asset(js) }
|
|
DiscoursePluginRegistry.handlebars.each { |hb| require_asset(hb) }
|
|
|
|
DiscoursePluginRegistry.each_globbed_asset do |f, ext|
|
|
if File.directory?(f)
|
|
depend_on(f)
|
|
elsif f.to_s.end_with?(".#{ext}")
|
|
require_asset(f)
|
|
end
|
|
end
|
|
|
|
%>
|