@@ -71,3 +71,8 @@ jQuery.event.special.remove = {
if (e.handler) e.handler();
}
};
+
+// start application
+jQuery(function(){
+ new App.Run();
+});
@@ -5,9 +5,4 @@
</div>
<div id="splash">
<div class="logo">booting...</div>
-</div>
-<script type="text/javascript">
- jQuery(function(){
- new App.Run();
- })
-</script>
+</div>
@@ -3,7 +3,11 @@
<head>
<title><%= Setting.get('product_name') %></title>
<%= stylesheet_link_tag "application" %>
+ <% if Rails.configuration.assets.debug %>
<%= javascript_include_tag "application" %>
+ <% else %>
+ <%= javascript_include_tag "application", :defer => 'defer' %>
+ <% end %>
<%= csrf_meta_tags %>
</head>
<body>