Skip to content
This repository has been archived by the owner on May 12, 2023. It is now read-only.

Commit

Permalink
Removed local jquery from inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
nicinabox committed Jan 8, 2011
1 parent 9838cf1 commit 983d9f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion app/views/layouts/application.html.erb
Expand Up @@ -27,7 +27,6 @@
</footer>
<%= javascript_include_tag 'https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js',
'https://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js',
'jquery-min.js',
'jquery.equalheights',
'jquery.masonry.min',
'application' %>
Expand Down
2 changes: 1 addition & 1 deletion public/javascripts/application.js
Expand Up @@ -33,7 +33,7 @@ $(document).ready(function(){
$('.stay_alive').removeClass('stay_alive');
$.get('/accounts/filter/'+$(this).val().toLowerCase(), function(data){
$.each(data, function(i) {
$('#accounts .account#account_'+data[i].account.id).addClass('stay_alive');
$('#accounts .account#account_'+data[i].account.id).addClass('stay_alive');
});

$('.stay_alive').removeClass('kill').fadeIn(speed);
Expand Down

0 comments on commit 983d9f6

Please sign in to comment.