mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-08-29 06:18:24 +02:00
Issue 106 exit button on first slide
This commit is contained in:
parent
31ad2a586b
commit
e99dce8948
10 changed files with 59 additions and 20 deletions
|
@ -10364,6 +10364,10 @@ var PositiveNegativeBase = BaseView.extend({
|
|||
this.navEvents.trigger('positive');
|
||||
},
|
||||
|
||||
exit: function() {
|
||||
this.navEvents.trigger('exit');
|
||||
},
|
||||
|
||||
negative: function() {
|
||||
this.navEvents.trigger('negative');
|
||||
}
|
||||
|
@ -10462,9 +10466,15 @@ var LeftRightView = PositiveNegativeBase.extend({
|
|||
template: _.template($('#left-right-template').html()),
|
||||
events: {
|
||||
'click .left': 'negative',
|
||||
'click .exit': 'exit',
|
||||
'click .right': 'positive'
|
||||
},
|
||||
|
||||
exit: function() {
|
||||
this.pipeEvents.trigger('exit');
|
||||
LeftRightView.__super__.exit.apply(this);
|
||||
},
|
||||
|
||||
positive: function() {
|
||||
this.pipeEvents.trigger('positive');
|
||||
LeftRightView.__super__.positive.apply(this);
|
||||
|
@ -14609,6 +14619,7 @@ var MultiView = Backbone.View.extend({
|
|||
this.navEvents.on('negative', this.getNegFunc(), this);
|
||||
this.navEvents.on('positive', this.getPosFunc(), this);
|
||||
this.navEvents.on('quit', this.finish, this);
|
||||
this.navEvents.on('exit', this.finish, this);
|
||||
|
||||
this.keyboardListener = new KeyboardListener({
|
||||
events: this.navEvents,
|
||||
|
@ -30265,6 +30276,10 @@ var PositiveNegativeBase = BaseView.extend({
|
|||
this.navEvents.trigger('positive');
|
||||
},
|
||||
|
||||
exit: function() {
|
||||
this.navEvents.trigger('exit');
|
||||
},
|
||||
|
||||
negative: function() {
|
||||
this.navEvents.trigger('negative');
|
||||
}
|
||||
|
@ -30363,9 +30378,15 @@ var LeftRightView = PositiveNegativeBase.extend({
|
|||
template: _.template($('#left-right-template').html()),
|
||||
events: {
|
||||
'click .left': 'negative',
|
||||
'click .exit': 'exit',
|
||||
'click .right': 'positive'
|
||||
},
|
||||
|
||||
exit: function() {
|
||||
this.pipeEvents.trigger('exit');
|
||||
LeftRightView.__super__.exit.apply(this);
|
||||
},
|
||||
|
||||
positive: function() {
|
||||
this.pipeEvents.trigger('positive');
|
||||
LeftRightView.__super__.positive.apply(this);
|
||||
|
@ -31458,6 +31479,7 @@ var MultiView = Backbone.View.extend({
|
|||
this.navEvents.on('negative', this.getNegFunc(), this);
|
||||
this.navEvents.on('positive', this.getPosFunc(), this);
|
||||
this.navEvents.on('quit', this.finish, this);
|
||||
this.navEvents.on('exit', this.finish, this);
|
||||
|
||||
this.keyboardListener = new KeyboardListener({
|
||||
events: this.navEvents,
|
||||
|
|
1
build/bundle.min.8854fb9b.js
Normal file
1
build/bundle.min.8854fb9b.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
build/bundle.min.js
vendored
2
build/bundle.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -942,15 +942,16 @@ div.gitDemonstrationView {
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
.leftRightView div.hideLeft i {
|
||||
cursor: default;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.leftRightView div {
|
||||
margin: 0 20px;
|
||||
margin: 0 60px;
|
||||
}
|
||||
|
||||
.leftRightView div.exit {
|
||||
-webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
|
||||
-moz-transform: matrix(-1, 0, 0, 1, 0, 0);
|
||||
}
|
||||
|
||||
.leftRightView div.exit,
|
||||
.leftRightView div.left {
|
||||
color: rgb(253, 50, 50);
|
||||
text-shadow: -1px 1px 3px rgba(0,0,0,0.7);
|
||||
|
@ -965,6 +966,7 @@ div.gitDemonstrationView {
|
|||
color: #74FC74;
|
||||
}
|
||||
|
||||
.leftRightView div.exit:hover,
|
||||
.leftRightView div.left:hover {
|
||||
color: #FF6969;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue