Merge branch 'feature/arjun/new-discussions' of github.com:MITx/mitx into feature/arjun/new-discussions

This commit is contained in:
Arjun Singh
2012-09-14 04:07:15 -07:00
2 changed files with 7 additions and 6 deletions

View File

@@ -18,11 +18,12 @@ if Backbone?
@current_page < @pages
addThread: (thread, options) ->
# TODO: Check for existing thread with same ID?
options ||= {}
model = new Thread thread
@add model
model
# TODO: Check for existing thread with same ID in a faster way
if not @find(thread.id)
options ||= {}
model = new Thread thread
@add model
model
retrieveAnotherPage: (search_text="", commentable_ids="", sort_key="")->
# TODO: I really feel that this belongs in DiscussionThreadListView

View File

@@ -1039,7 +1039,7 @@ body.discussion {
}
}
.more a {
.more-pages a {
background: #eee;
font-size: 12px;
line-height: 33px;