Sha256: 05b9a520df0a0bbf05012c4f6f2e79079fce00307b915b3cc62e71ce517fbcea

Contents?: true

Size: 579 Bytes

Versions: 9

Compression:

Stored size: 579 Bytes

Contents

<%= javascripts %w[jquery.example] %>

<%= partial :'shared/filter' %>

<div id="features" class="spe_corners">
  <%= partial :'features/rows' %>
</div>

<script>
  $( function() {
    $('a.features').addClass( 'current' );

    $('a.nav_link').click( function() {
      $("a.nav_link").removeClass( "current" );   
      $(this).addClass( 'current' );    
      return true;
    });
    
    $('.pagination a').live( 'click', function() {
      $("#content").html( '<%=partial :"shared/wait"%>' ); 
      $.getScript( this.href );
      return false;
    });  
  });
</script>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
wackamole-0.1.4 views/features/index.erb
wackamole-0.1.3 views/features/index.erb
wackamole-0.1.2 views/features/index.erb
wackamole-0.0.9 views/features/index.erb
wackamole-0.0.8 views/features/index.erb
wackamole-0.0.7 views/features/index.erb
wackamole-0.0.6 views/features/index.erb
wackamole-0.0.5 views/features/index.erb
wackamole-0.0.4 views/features/index.erb