| ★ wanayoo — archive 1999 https://github.com/bkeepers/github-notifications/pull/45 | Nouvelle recherche | Portail wanayoo |

Loading…
|
|
bkeepers |
Merge remote-tracking branch 'origin/master' into create-comments
…
* origin/master: Avoid fetching subscription status multiple times Reuse same collection for paginating comments Don't attempt to fetch subject for unsupported types |
a79fb58
|
|
|
|
bkeepers |
use scrollIntoView plugin
|
871a480
|
|
|
|
bkeepers |
n/p keyboard shortcuts to navigate comments
|
9973ad9
|
|
|
|
bkeepers |
Define comments on subject model
|
fdca91d
|
|
|
|
bkeepers |
Fix recursive loading of paginated comments
|
80a1845
|
|
|
|
bkeepers |
Make initial comment selectable
|
7702a84
|
|
|
|
bkeepers |
Don't loop selections
|
92bfe04
|
|
|
|
bkeepers |
Merge remote-tracking branch 'origin/master' into comment-shortcuts
…
* origin/master: |
9ba0fa2
|
Merge remote-tracking branch 'origin/master' into create-comments …
* origin/master: Avoid fetching subscription status multiple times Reuse same collection for paginating comments Don't attempt to fetch subject for unsupported types
Define comments on subject model
Make initial comment selectable
Merge remote-tracking branch 'origin/master' into comment-shortcuts …
* origin/master:
| @@ -1,5 +1,2 @@ | ||
| class app.Collections.Comments extends Backbone.Collection | ||
| model: app.Models.Comment | ||
| - | ||
| - initialize: (options) -> | ||
| - @url = options.url |
| @@ -1,6 +1,10 @@ | ||
| class app.Views.Banner extends app.Views.Comment | ||
| - events: {} # clear out events | ||
| - | ||
| initialize: (options) -> | ||
| @template = options.template | ||
| super | ||
| + | ||
| + events: {} # clear out events | ||
| + | ||
| + # Don't select banner | ||
| + selected: null | ||
| + unselected: null |
| @@ -1,3 +1,2 @@ | ||
| class app.Views.Commit extends app.Views.Subject | ||
| banner: JST['app/templates/commit.us'] | ||
| - isInitialComment: false |