mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:20:41 +08:00
fad868c78f
Upgrade jquery I made this commit cause my JS debugging CDN support added a header and wanted we bump cache everywhere
8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
<%
|
|
if Rails.env.development? || Rails.env.test?
|
|
require_asset ("development/jquery-2.1.1.js")
|
|
else
|
|
require_asset ("production/jquery-2.1.1.min.js")
|
|
end
|
|
%>
|