mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 17:27:22 +02:00
Fixes Issue #10
This commit is contained in:
parent
8bb28255a6
commit
c580c34cdf
4 changed files with 11 additions and 3 deletions
|
@ -14259,7 +14259,6 @@ var Views = require('../views');
|
||||||
var ModalTerminal = Views.ModalTerminal;
|
var ModalTerminal = Views.ModalTerminal;
|
||||||
var ContainedBase = Views.ContainedBase;
|
var ContainedBase = Views.ContainedBase;
|
||||||
|
|
||||||
var MultiView = require('../views/multiView').MultiView;
|
|
||||||
|
|
||||||
var TextGrabber = ContainedBase.extend({
|
var TextGrabber = ContainedBase.extend({
|
||||||
tagName: 'div',
|
tagName: 'div',
|
||||||
|
@ -14492,6 +14491,7 @@ var DemonstrationBuilder = ContainedBase.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
testView: function() {
|
testView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [{
|
childViews: [{
|
||||||
type: 'GitDemonstrationView',
|
type: 'GitDemonstrationView',
|
||||||
|
@ -14598,12 +14598,14 @@ var MultiViewBuilder = ContainedBase.extend({
|
||||||
var el = ev.srcElement;
|
var el = ev.srcElement;
|
||||||
var index = $(el).attr('data-index');
|
var index = $(el).attr('data-index');
|
||||||
var toTest = this.getChildViews()[index];
|
var toTest = this.getChildViews()[index];
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [toTest]
|
childViews: [toTest]
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
testEntireView: function() {
|
testEntireView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: this.getChildViews()
|
childViews: this.getChildViews()
|
||||||
});
|
});
|
||||||
|
@ -23426,7 +23428,6 @@ var Views = require('../views');
|
||||||
var ModalTerminal = Views.ModalTerminal;
|
var ModalTerminal = Views.ModalTerminal;
|
||||||
var ContainedBase = Views.ContainedBase;
|
var ContainedBase = Views.ContainedBase;
|
||||||
|
|
||||||
var MultiView = require('../views/multiView').MultiView;
|
|
||||||
|
|
||||||
var TextGrabber = ContainedBase.extend({
|
var TextGrabber = ContainedBase.extend({
|
||||||
tagName: 'div',
|
tagName: 'div',
|
||||||
|
@ -23659,6 +23660,7 @@ var DemonstrationBuilder = ContainedBase.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
testView: function() {
|
testView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [{
|
childViews: [{
|
||||||
type: 'GitDemonstrationView',
|
type: 'GitDemonstrationView',
|
||||||
|
@ -23765,12 +23767,14 @@ var MultiViewBuilder = ContainedBase.extend({
|
||||||
var el = ev.srcElement;
|
var el = ev.srcElement;
|
||||||
var index = $(el).attr('data-index');
|
var index = $(el).attr('data-index');
|
||||||
var toTest = this.getChildViews()[index];
|
var toTest = this.getChildViews()[index];
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [toTest]
|
childViews: [toTest]
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
testEntireView: function() {
|
testEntireView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: this.getChildViews()
|
childViews: this.getChildViews()
|
||||||
});
|
});
|
||||||
|
|
1
build/bundle.min.4936b5ab.js
Normal file
1
build/bundle.min.4936b5ab.js
Normal file
File diff suppressed because one or more lines are too long
1
build/bundle.min.js
vendored
Normal file
1
build/bundle.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -10,7 +10,6 @@ var Views = require('../views');
|
||||||
var ModalTerminal = Views.ModalTerminal;
|
var ModalTerminal = Views.ModalTerminal;
|
||||||
var ContainedBase = Views.ContainedBase;
|
var ContainedBase = Views.ContainedBase;
|
||||||
|
|
||||||
var MultiView = require('../views/multiView').MultiView;
|
|
||||||
|
|
||||||
var TextGrabber = ContainedBase.extend({
|
var TextGrabber = ContainedBase.extend({
|
||||||
tagName: 'div',
|
tagName: 'div',
|
||||||
|
@ -243,6 +242,7 @@ var DemonstrationBuilder = ContainedBase.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
testView: function() {
|
testView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [{
|
childViews: [{
|
||||||
type: 'GitDemonstrationView',
|
type: 'GitDemonstrationView',
|
||||||
|
@ -349,12 +349,14 @@ var MultiViewBuilder = ContainedBase.extend({
|
||||||
var el = ev.srcElement;
|
var el = ev.srcElement;
|
||||||
var index = $(el).attr('data-index');
|
var index = $(el).attr('data-index');
|
||||||
var toTest = this.getChildViews()[index];
|
var toTest = this.getChildViews()[index];
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: [toTest]
|
childViews: [toTest]
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
testEntireView: function() {
|
testEntireView: function() {
|
||||||
|
var MultiView = require('../views/multiView').MultiView;
|
||||||
new MultiView({
|
new MultiView({
|
||||||
childViews: this.getChildViews()
|
childViews: this.getChildViews()
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue