diff --git a/src/js/visuals/visualization.js b/src/js/visuals/visualization.js index 27b636c4..dc69ca02 100644 --- a/src/js/visuals/visualization.js +++ b/src/js/visuals/visualization.js @@ -151,6 +151,9 @@ var Visualization = Backbone.View.extend({ fadeTreeIn: function() { this.shown = true; + if (!this.paper.canvas) { + return; + } $(this.paper.canvas).animate({opacity: 1}, this.getAnimationTime()); this.originToo('fadeTreeIn', arguments); diff --git a/src/levels/remote/pushArgs2.js b/src/levels/remote/pushArgs2.js index 249cc338..92fd5202 100644 --- a/src/levels/remote/pushArgs2.js +++ b/src/levels/remote/pushArgs2.js @@ -6,7 +6,7 @@ exports.level = { "en_US": "Git push arguments -- Expanded!" }, "hint": { - "en_US": "Remember you can admit defeat and type in \"see solution\" :P" + "en_US": "Remember you can admit defeat and type in \"show solution\" :P" }, "startDialog": { "en_US": { @@ -48,7 +48,7 @@ exports.level = { "Remember, `source` is any location that git will understand:" ], "afterMarkdowns": [ - "Woah! That's a pretty trippy command but it makes sense -- git resolved `foo^` into a location, uploaded whatever commits weren't present yet, and then updated destination." + "Woah! That's a pretty trippy command but it makes sense -- git resolved `foo^` into a location, uploaded whatever commits that weren't present yet on the remote, and then updated destination." ], "command": "git push origin foo^:master", "beforeCommand": "git clone; go -b foo; git commit; git commit"