mirror of
https://github.com/danbee/danbarberphoto
synced 2025-03-04 08:49:07 +00:00
20 lines
444 B
Plaintext
20 lines
444 B
Plaintext
<%#
|
|
# Javascript Partial
|
|
|
|
This partial imports the necessary javascript on each page.
|
|
By default, it includes the application JS,
|
|
but each page can define additional JS sources
|
|
by providing a `content_for(:javascript)` block.
|
|
%>
|
|
|
|
<%= javascript_include_tag "administrate/application" %>
|
|
|
|
<%= yield :javascript %>
|
|
|
|
<% if Rails.env.test? %>
|
|
<%= javascript_tag do %>
|
|
$.fx.off = true;
|
|
$.ajaxSetup({ async: false });
|
|
<% end %>
|
|
<% end %>
|