overleaf/services/web/public/js/revisionHistoryModel.js

18 lines
438 B
JavaScript
Raw Normal View History

2014-02-12 05:23:40 -05:00
// 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);