PageRenderTime 38ms CodeModel.GetById 11ms RepoModel.GetById 0ms app.codeStats 0ms

/app/collection/collection.mail.js

https://github.com/Ryank90/backbone-mail
JavaScript | 26 lines | 15 code | 11 blank | 0 comment | 0 complexity | c7c09cac6bae0b8e9110c47843ab710b MD5 | raw file
  1. define([
  2. 'backbone'
  3. ], function (
  4. Backbone
  5. ) {
  6. 'use strict';
  7. var MailCollection = Backbone.Collection.extend({
  8. url: '',
  9. parse: function (response) {
  10. },
  11. comparator: function (response) {
  12. }
  13. });
  14. return MailCollection;
  15. });