mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
making sandbox first class
This commit is contained in:
parent
90ae34f37b
commit
d75489c175
8 changed files with 975 additions and 942 deletions
1908
build/bundle.js
1908
build/bundle.js
File diff suppressed because it is too large
Load diff
|
@ -27,7 +27,7 @@ var init = function() {
|
|||
* - initializing the command input bar
|
||||
* - handling window.focus and zoom events
|
||||
**/
|
||||
var Sandbox = require('../level/sandbox').Sandbox;
|
||||
var Sandbox = require('../sandbox/').Sandbox;
|
||||
var Level = require('../level').Level;
|
||||
var EventBaton = require('../util/eventBaton').EventBaton;
|
||||
var LevelArbiter = require('../level/arbiter').LevelArbiter;
|
||||
|
|
|
@ -8,7 +8,7 @@ var intl = require('../intl');
|
|||
var log = require('../log');
|
||||
|
||||
var Errors = require('../util/errors');
|
||||
var Sandbox = require('../level/sandbox').Sandbox;
|
||||
var Sandbox = require('../sandbox/').Sandbox;
|
||||
var Constants = require('../util/constants');
|
||||
|
||||
var Visualization = require('../visuals/visualization').Visualization;
|
||||
|
|
|
@ -2,7 +2,7 @@ var _ = require('underscore');
|
|||
|
||||
var GitCommands = require('../git/commands');
|
||||
var Commands = require('../commands');
|
||||
var SandboxCommands = require('../level/sandboxCommands');
|
||||
var SandboxCommands = require('../sandbox/commands');
|
||||
|
||||
// more or less a static class
|
||||
var ParseWaterfall = function(options) {
|
||||
|
|
|
@ -20,7 +20,7 @@ var toGlobalize = {
|
|||
ZoomLevel: require('../util/zoomLevel'),
|
||||
VisBranch: require('../visuals/visBranch'),
|
||||
Level: require('../level'),
|
||||
Sandbox: require('../level/sandbox'),
|
||||
Sandbox: require('../sandbox/'),
|
||||
GitDemonstrationView: require('../views/gitDemonstrationView'),
|
||||
Markdown: require('markdown'),
|
||||
LevelDropdownView: require('../views/levelDropdownView'),
|
||||
|
|
1
todo.txt
1
todo.txt
|
@ -17,6 +17,7 @@ Origin things:
|
|||
Medium things:
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
[ ] figure out what to do with instant commands (and parse waterfall and the like)
|
||||
[ ] disable git commands on hg levels
|
||||
|
||||
Cases to handle / things to edit
|
||||
=======================
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue