somewhat broken

This commit is contained in:
Peter Cottle 2012-12-09 21:12:02 -08:00
parent d7f3653ad9
commit 8d2803e4e4
8 changed files with 5659 additions and 9 deletions

View file

@ -1,3 +1,5 @@
var CommandEntryCollection = require('./collections').CommandEntryCollection;
var CommandPromptView = Backbone.View.extend({
initialize: function(options) {
this.collection = options.collection;
@ -379,3 +381,7 @@ var CommandLineHistoryView = Backbone.View.extend({
this.collection.each(this.addOne);
}
});
exports.CommandPromptView = CommandPromptView;
exports.CommandLineHistoryView = CommandLineHistoryView;