mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
another down
This commit is contained in:
parent
7450fb76ce
commit
0fe113943b
8 changed files with 1147 additions and 1030 deletions
2205
build/bundle.js
2205
build/bundle.js
File diff suppressed because it is too large
Load diff
|
@ -9,6 +9,7 @@
|
|||
*/
|
||||
|
||||
var Animation = require('./async').Animation;
|
||||
var GRAPHICS = require('./constants').GRAPHICS;
|
||||
|
||||
// essentially a static class
|
||||
var AnimationFactory = function() {
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
var GLOBAL = require('./constants').GLOBAL;
|
||||
|
||||
var Animation = Backbone.Model.extend({
|
||||
defaults: {
|
||||
duration: 300,
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
var Commit = require('./git').Commit;
|
||||
var Branch = require('./git').Branch;
|
||||
|
||||
var Main = require('./main');
|
||||
var Command = require('./commandModel').Command;
|
||||
var CommandEntry = require('./commandModel').CommandEntry;
|
||||
var TIME = require('./constants').TIME;
|
||||
|
||||
var CommitCollection = Backbone.Collection.extend({
|
||||
model: Commit
|
||||
|
|
|
@ -40,3 +40,7 @@ var GRAPHICS = {
|
|||
orphanNodeFill: 'hsb(0.5,0.8,0.7)',
|
||||
};
|
||||
|
||||
exports.GLOBAL = GLOBAL;
|
||||
exports.TIME = TIME;
|
||||
exports.GRAPHICS = GRAPHICS;
|
||||
|
||||
|
|
|
@ -129,7 +129,7 @@
|
|||
|
||||
<!-- My files! -->
|
||||
<!-- <script src="async.js"></script> -->
|
||||
<script src="constants.js"></script>
|
||||
<!-- <script src="constants.js"></script> -->
|
||||
<script src="errors.js"></script>
|
||||
|
||||
<script src="miscViews.js"></script>
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
var Main = require('./main');
|
||||
var GRAPHICS = require('./constants').GRAPHICS;
|
||||
|
||||
var randomHueString = function() {
|
||||
var hue = Math.random();
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
var Main = require('./main');
|
||||
var GRAPHICS = require('./constants').GRAPHICS;
|
||||
var GLOBAL = require('./constants').GLOBAL;
|
||||
|
||||
var Collections = require('./collections');
|
||||
var CommitCollection = Collections.CommitCollection;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue