mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
17 lines
438 B
JavaScript
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);
|