mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-27 00:18:56 +02:00
beginning level dropdown
This commit is contained in:
parent
b34422d648
commit
0012c3de54
5 changed files with 17 additions and 3 deletions
|
@ -19739,7 +19739,8 @@ var toGlobalize = {
|
|||
VisBranch: require('../visuals/visBranch'),
|
||||
Level: require('../level'),
|
||||
Sandbox: require('../level/sandbox'),
|
||||
GitDemonstrationView: require('../views/gitDemonstrationView')
|
||||
GitDemonstrationView: require('../views/gitDemonstrationView'),
|
||||
Markdown: require('markdown')
|
||||
};
|
||||
|
||||
_.each(toGlobalize, function(module) {
|
||||
|
@ -21226,6 +21227,10 @@ exports.NextLevelConfirm = NextLevelConfirm;
|
|||
});
|
||||
require("/src/js/views/index.js");
|
||||
|
||||
require.define("/src/js/views/levelDropdown.js",function(require,module,exports,__dirname,__filename,process,global){
|
||||
});
|
||||
require("/src/js/views/levelDropdown.js");
|
||||
|
||||
require.define("/src/js/views/multiView.js",function(require,module,exports,__dirname,__filename,process,global){var _ = require('underscore');
|
||||
var Q = require('q');
|
||||
// horrible hack to get localStorage Backbone plugin
|
||||
|
|
|
@ -20,7 +20,8 @@ var toGlobalize = {
|
|||
VisBranch: require('../visuals/visBranch'),
|
||||
Level: require('../level'),
|
||||
Sandbox: require('../level/sandbox'),
|
||||
GitDemonstrationView: require('../views/gitDemonstrationView')
|
||||
GitDemonstrationView: require('../views/gitDemonstrationView'),
|
||||
Markdown: require('markdown')
|
||||
};
|
||||
|
||||
_.each(toGlobalize, function(module) {
|
||||
|
|
0
src/js/views/levelDropdown.js
Normal file
0
src/js/views/levelDropdown.js
Normal file
|
@ -13,6 +13,12 @@ html, body {
|
|||
color: #eee;
|
||||
}
|
||||
|
||||
code {
|
||||
background: grey;
|
||||
padding: 4px;
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
p {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
|
4
todo.txt
4
todo.txt
|
@ -1,8 +1,10 @@
|
|||
Big Things
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
[ ] levels dropdown selection?
|
||||
|
||||
[ ] level builder? :OOO
|
||||
* basically just an extension of level (or sandbox), that has commands like
|
||||
```save tree beginning``` or ```save tree goal``` and then a final
|
||||
dialog typing area thingy
|
||||
|
||||
|
||||
Medium things:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue