Skip to content

Commit 73eef0a

Browse files
committed
Merge branch 'gh-pages' of https://github.com/spring-projects/gh-pages into gh-pages
2 parents 8ad831c + b2be58e commit 73eef0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Assuming you're already within your project's clone directory, and you've alread
107107

108108
Use the `--watch` flag to pick up changes to files as you make them, allowing you a nice edit-and-refresh workflow.
109109

110-
jekyll serve --watch
110+
bundle exec jekyll serve --watch
111111

112112
> **Important:** Because the `baseurl` is set explicitly within your project's `_config.yml` file, you'll need to fully-qualify the URL to view your project. For example, if your project is named "spring-xyz", your URL when running Jekyll locally will be <http://localhost:4000/spring-xyz/>. Don't forget the trailing slash! You'll get a 404 without it.
113113

js/projectDocumentationWidget.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Spring.SnippetView = Backbone.View.extend({
9595
this.combinedTemplate = _.template(
9696
"<div class=\"highlight\"><pre><code>" +
9797
downloadTemplate.find("code:first").html() +
98-
"{@ if (repository) { @}" +
98+
"{@ if (typeof(repository) != \"undefined\") { @}" +
9999
repositoryTemplate.find("code:first").html() +
100100
"{@ } @}" +
101101
"</code></pre></div>"

0 commit comments

Comments
 (0)