mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 06:34:26 +02:00
fixes silly error in next level dialog Issue #56
This commit is contained in:
parent
956d559697
commit
3523d28416
7 changed files with 14 additions and 6 deletions
|
@ -92,4 +92,6 @@ Or reported an issue that was successfully closed!
|
|||
* "flying-sheep"
|
||||
* "arianvp"
|
||||
* "MaPePeR"
|
||||
* Lutz ("mobilutz")
|
||||
* Jan Philipp
|
||||
|
||||
|
|
|
@ -10786,7 +10786,9 @@ var ConfirmCancelTerminal = Backbone.View.extend({
|
|||
var NextLevelConfirm = ConfirmCancelTerminal.extend({
|
||||
initialize: function(options) {
|
||||
options = options || {};
|
||||
var nextLevelName = (options.nextLevel) ? options.nextLevel.name : '';
|
||||
var nextLevelName = (options.nextLevel) ?
|
||||
intl.getName(options.nextLevel) :
|
||||
'';
|
||||
var pluralNumCommands = (options.numCommands == 1) ? '' : 's';
|
||||
var pluralBest = (options.best == 1) ? '' : 's';
|
||||
|
||||
|
@ -27118,7 +27120,9 @@ var ConfirmCancelTerminal = Backbone.View.extend({
|
|||
var NextLevelConfirm = ConfirmCancelTerminal.extend({
|
||||
initialize: function(options) {
|
||||
options = options || {};
|
||||
var nextLevelName = (options.nextLevel) ? options.nextLevel.name : '';
|
||||
var nextLevelName = (options.nextLevel) ?
|
||||
intl.getName(options.nextLevel) :
|
||||
'';
|
||||
var pluralNumCommands = (options.numCommands == 1) ? '' : 's';
|
||||
var pluralBest = (options.best == 1) ? '' : 's';
|
||||
|
||||
|
|
1
build/bundle.min.01944793.js
Normal file
1
build/bundle.min.01944793.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
|
@ -412,7 +412,7 @@
|
|||
For a much easier time perusing the source, see the individual files at:
|
||||
https://github.com/pcottle/learnGitBranching
|
||||
-->
|
||||
<script src="build/bundle.min.4924ef88.js"></script>
|
||||
<script src="build/bundle.min.01944793.js"></script>
|
||||
|
||||
<!-- The advantage of github pages: super-easy, simple, slick static hostic.
|
||||
The downside? No raw logs to parse for analytics, so I have to include
|
||||
|
|
|
@ -426,7 +426,9 @@ var ConfirmCancelTerminal = Backbone.View.extend({
|
|||
var NextLevelConfirm = ConfirmCancelTerminal.extend({
|
||||
initialize: function(options) {
|
||||
options = options || {};
|
||||
var nextLevelName = (options.nextLevel) ? options.nextLevel.name : '';
|
||||
var nextLevelName = (options.nextLevel) ?
|
||||
intl.getName(options.nextLevel) :
|
||||
'';
|
||||
var pluralNumCommands = (options.numCommands == 1) ? '' : 's';
|
||||
var pluralBest = (options.best == 1) ? '' : 's';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue