mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
2c7906999a
This PR includes support for running theme tests in legacy ember production envrionments.
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
<%
|
|
if @force_ember_debug || Rails.env.development? || Rails.env.test?
|
|
require_asset ("ember.debug.js")
|
|
else
|
|
require_asset ("ember.prod.js")
|
|
end
|
|
%>
|