提交 b2be58e5 编写于 作者: B Brian Clozel

Add defensive check for empty repository key

上级 e7438db1
...@@ -95,7 +95,7 @@ Spring.SnippetView = Backbone.View.extend({ ...@@ -95,7 +95,7 @@ Spring.SnippetView = Backbone.View.extend({
this.combinedTemplate = _.template( this.combinedTemplate = _.template(
"<div class=\"highlight\"><pre><code>" + "<div class=\"highlight\"><pre><code>" +
downloadTemplate.find("code:first").html() + downloadTemplate.find("code:first").html() +
"{@ if (repository) { @}" + "{@ if (typeof(repository) != \"undefined\") { @}" +
repositoryTemplate.find("code:first").html() + repositoryTemplate.find("code:first").html() +
"{@ } @}" + "{@ } @}" +
"</code></pre></div>" "</code></pre></div>"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册