~kyrofa/snapweb/autorestart_services

« back to all changes in this revision

Viewing changes to www/src/js/views/storelist-item.js

* add sorting
* allow user to change list style
* split out collections by stephen-stewart approved by sergiusens

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// store list item view
 
2
 
 
3
var SnapListItemView = require('./snaplist-item.js');
 
4
var template = require('../templates/storelist-item.hbs');
 
5
 
 
6
module.exports = SnapListItemView.extend({
 
7
  template: function(model) {
 
8
    return template(model);
 
9
  }
 
10
});