mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-01 10:14:28 +02:00
ok
This commit is contained in:
parent
f7e5e5ac71
commit
b8e7d2a874
5 changed files with 27572 additions and 5 deletions
|
@ -13860,7 +13860,7 @@ GitVisuals.prototype.genSnapshot = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitVisuals.prototype.refreshTree = function(speed) {
|
GitVisuals.prototype.refreshTree = function(speed) {
|
||||||
if (!this.gitReady) {
|
if (!this.gitReady || !this.gitEngine.rootCommit) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25099,7 +25099,7 @@ GitVisuals.prototype.genSnapshot = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitVisuals.prototype.refreshTree = function(speed) {
|
GitVisuals.prototype.refreshTree = function(speed) {
|
||||||
if (!this.gitReady) {
|
if (!this.gitReady || !this.gitEngine.rootCommit) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
27567
build/bundle2.js
Normal file
27567
build/bundle2.js
Normal file
File diff suppressed because it is too large
Load diff
2
grunt.js
2
grunt.js
|
@ -89,7 +89,7 @@ module.exports = function(grunt) {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
browserify: {
|
browserify: {
|
||||||
'build/bundle.js': {
|
'build/bundle2.js': {
|
||||||
entries: ['src/**/*.js', 'src/js/**/*.js']
|
entries: ['src/**/*.js', 'src/js/**/*.js']
|
||||||
//prepend: ['<banner:meta.banner>'],
|
//prepend: ['<banner:meta.banner>'],
|
||||||
}
|
}
|
||||||
|
|
|
@ -402,7 +402,7 @@
|
||||||
For a much easier time perusing the source, see the individual files at:
|
For a much easier time perusing the source, see the individual files at:
|
||||||
https://github.com/pcottle/learnGitBranching
|
https://github.com/pcottle/learnGitBranching
|
||||||
-->
|
-->
|
||||||
<script src="build/bundle.js"></script>
|
<script src="build/bundle2.js"></script>
|
||||||
|
|
||||||
<!-- The advantage of github pages: super-easy, simple, slick static hostic.
|
<!-- 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
|
The downside? No raw logs to parse for analytics, so I have to include
|
||||||
|
|
|
@ -334,7 +334,7 @@ GitVisuals.prototype.genSnapshot = function() {
|
||||||
};
|
};
|
||||||
|
|
||||||
GitVisuals.prototype.refreshTree = function(speed) {
|
GitVisuals.prototype.refreshTree = function(speed) {
|
||||||
if (!this.gitReady) {
|
if (!this.gitReady || !this.gitEngine.rootCommit) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue