mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-03 03:04:27 +02:00
import export tree done
This commit is contained in:
parent
aa9cfea3a4
commit
45aa088796
6 changed files with 262 additions and 34 deletions
|
@ -10,6 +10,9 @@ var LeftRightView = require('../views').LeftRightView;
|
|||
var ModalAlert = require('../views').ModalAlert;
|
||||
var GitDemonstrationView = require('../views/gitDemonstrationView').GitDemonstrationView;
|
||||
|
||||
var BuilderViews = require('../views/builderViews');
|
||||
var MarkdownPresenter = BuilderViews.MarkdownPresenter;
|
||||
|
||||
var KeyboardListener = require('../util/keyboard').KeyboardListener;
|
||||
var GitError = require('../util/errors').GitError;
|
||||
|
||||
|
@ -23,7 +26,8 @@ var MultiView = Backbone.View.extend({
|
|||
// a simple mapping of what childViews we support
|
||||
typeToConstructor: {
|
||||
ModalAlert: ModalAlert,
|
||||
GitDemonstrationView: GitDemonstrationView
|
||||
GitDemonstrationView: GitDemonstrationView,
|
||||
MarkdownPresenter: MarkdownPresenter
|
||||
},
|
||||
|
||||
initialize: function(options) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue