This commit is contained in:
Peter Cottle 2013-01-16 15:24:09 -08:00
parent f7e5e5ac71
commit b8e7d2a874
5 changed files with 27572 additions and 5 deletions

View file

@ -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

File diff suppressed because it is too large Load diff

View file

@ -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>'],
} }

View file

@ -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

View file

@ -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;
} }