mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-31 07:09:58 +02:00
consolidation
This commit is contained in:
parent
6b125d194c
commit
69e435a8ec
12 changed files with 130 additions and 130 deletions
|
@ -9,7 +9,7 @@
|
|||
*/
|
||||
|
||||
var Animation = require('./index').Animation;
|
||||
var GRAPHICS = require('../constants').GRAPHICS;
|
||||
var GRAPHICS = require('../util/constants').GRAPHICS;
|
||||
|
||||
// essentially a static class
|
||||
var AnimationFactory = function() {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var GLOBAL = require('../constants').GLOBAL;
|
||||
var GLOBAL = require('../util/constants').GLOBAL;
|
||||
|
||||
var Animation = Backbone.Model.extend({
|
||||
defaults: {
|
||||
|
|
|
@ -4,7 +4,7 @@ var Branch = require('../git').Branch;
|
|||
var Main = require('../app');
|
||||
var Command = require('../models/commandModel').Command;
|
||||
var CommandEntry = require('../models/commandModel').CommandEntry;
|
||||
var TIME = require('../constants').TIME;
|
||||
var TIME = require('../util/constants').TIME;
|
||||
|
||||
var CommitCollection = Backbone.Collection.extend({
|
||||
model: Commit
|
||||
|
|
|
@ -4,7 +4,7 @@ var Main = require('../app');
|
|||
var AnimationQueue = require('../animation').AnimationQueue;
|
||||
var InteractiveRebaseView = require('../views/miscViews').InteractiveRebaseView;
|
||||
|
||||
var Errors = require('../errors');
|
||||
var Errors = require('../util/errors');
|
||||
var GitError = Errors.GitError;
|
||||
var CommandResult = Errors.CommandResult;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var Errors = require('../errors');
|
||||
var Errors = require('../util/errors');
|
||||
|
||||
var CommandProcessError = Errors.CommandProcessError;
|
||||
var GitError = Errors.GitError;
|
||||
|
|
|
@ -4,7 +4,7 @@ var toGlobalize = {
|
|||
Git: require('../git'),
|
||||
CommandModel: require('../models/commandModel'),
|
||||
Levels: require('../levels'),
|
||||
Constants: require('../constants'),
|
||||
Constants: require('../util/constants'),
|
||||
Collections: require('../collections'),
|
||||
Async: require('../animation'),
|
||||
AnimationFactory: require('../animation/animationFactory'),
|
||||
|
|
|
@ -3,7 +3,7 @@ var Main = require('../app');
|
|||
var Command = require('../models/commandModel').Command;
|
||||
var CommandEntry = require('../models/commandModel').CommandEntry;
|
||||
|
||||
var Errors = require('../errors');
|
||||
var Errors = require('../util/errors');
|
||||
var Warning = Errors.Warning;
|
||||
|
||||
var CommandPromptView = Backbone.View.extend({
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
var Main = require('../app');
|
||||
var GRAPHICS = require('../constants').GRAPHICS;
|
||||
var GLOBAL = require('../constants').GLOBAL;
|
||||
var GRAPHICS = require('../util/constants').GRAPHICS;
|
||||
var GLOBAL = require('../util/constants').GLOBAL;
|
||||
|
||||
var Collections = require('../collections');
|
||||
var CommitCollection = Collections.CommitCollection;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
var Main = require('../app');
|
||||
var GRAPHICS = require('../constants').GRAPHICS;
|
||||
var GRAPHICS = require('../util/constants').GRAPHICS;
|
||||
|
||||
var randomHueString = function() {
|
||||
var hue = Math.random();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue