Welcome to mirror list, hosted at ThFree Co, Russian Federation.

photos_view.js « views « app « javascripts « assets « app - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 14d484dd9f999be78706e1d8cae4c3f8a8f1ba1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-v3-or-Later

app.views.Photos = app.views.InfScroll.extend({
  className: "clearfix row",
  postClass : app.views.Photo,

  initialize : function() {
    this.stream = this.model;
    this.collection = this.stream.items;
    new app.views.Gallery({el: this.$el});

    // viable for extraction
    this.stream.fetch();
    this.setupInfiniteScroll();
  }
});
// @license-end