Skip to content

Commit

Permalink
removed doc link for site, no more tweets
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Kapadia committed Nov 19, 2012
1 parent 6f8f2c1 commit 541ed07
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion app/controllers/Commits.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class Commits extends Spine.Controller

render: ->
commits = Commit.sortByDate('date')
console.log commits
@append require('views/commits')(commits)

module.exports = Commits
2 changes: 0 additions & 2 deletions app/controllers/Main.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,5 @@ class Main extends Spine.Controller

initControllers: ->
new Commits(el: @activity)
new Tweets(el: @activity)
# new Tweets(el: $("#tweets"))

module.exports = Main
3 changes: 2 additions & 1 deletion app/views/libs.eco
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
<header class="subsection">Libraries</header>
<% for project, index in @: %>
<% console.log project %>
<% style = if index % 2 is 0 then "even" else "odd" %>
<article class="library <%= style %>">
<header><%= project.name %></header>
<p class="description"><%= project.description %></p>
<a href="<%= project.getUrl() %>">repository</a>
<% unless project.name is 'astrojs-site': %>
<a href="<%= project.getDocumentation() %>">documentation</a>
<% end %>
</article>
<% end %>

0 comments on commit 541ed07

Please sign in to comment.