mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-15 17:14:25 +02:00
collections
This commit is contained in:
parent
5e17b1d067
commit
4ea4b91296
2 changed files with 2038 additions and 2145 deletions
4123
build/bundle.js
4123
build/bundle.js
File diff suppressed because it is too large
Load diff
|
@ -1,10 +1,10 @@
|
|||
var Commit = require('./git').Commit;
|
||||
var Branch = require('./git').Branch;
|
||||
var Commit = require('../git').Commit;
|
||||
var Branch = require('../git').Branch;
|
||||
|
||||
var Main = require('./app/main');
|
||||
var Command = require('./models/commandModel').Command;
|
||||
var CommandEntry = require('./models/commandModel').CommandEntry;
|
||||
var TIME = require('./constants').TIME;
|
||||
var Main = require('../app/main');
|
||||
var Command = require('../models/commandModel').Command;
|
||||
var CommandEntry = require('../models/commandModel').CommandEntry;
|
||||
var TIME = require('../constants').TIME;
|
||||
|
||||
var CommitCollection = Backbone.Collection.extend({
|
||||
model: Commit
|
||||
|
@ -29,7 +29,7 @@ var CommandBuffer = Backbone.Model.extend({
|
|||
},
|
||||
|
||||
initialize: function(options) {
|
||||
require('./app/main').getEvents().on('gitCommandReady', _.bind(
|
||||
require('../app/main').getEvents().on('gitCommandReady', _.bind(
|
||||
this.addCommand, this
|
||||
));
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue