Moved to defer attribute for js include script.

This commit is contained in:
Martin Edenhofer 2013-08-14 10:05:23 +02:00
parent 3c552ce458
commit 66b4f2d2db
3 changed files with 10 additions and 6 deletions

View file

@ -71,3 +71,8 @@ jQuery.event.special.remove = {
if (e.handler) e.handler();
}
};
// start application
jQuery(function(){
new App.Run();
});

View file

@ -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>

View file

@ -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>