overleaf/services/web/public/js/revisionHistoryModel.js
2014-02-12 10:23:40 +00:00

17 lines
438 B
JavaScript

// Generated by CoffeeScript 1.3.3
(function() {
require(['jquery'], function($) {
var RevisionHistory;
return module.exports = RevisionHistory = new Class({
constructor: function(data) {
this.tableTemplate = _.template($('#revisionHistoryRowTemplate'));
return this.tableRow = $(this.template({
date: new Date(),
filesChangeCount: 4
}));
}
});
});
}).call(this);