From bcf4c702ed09fbf415d453e983cb6db9ea021cf2 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 31 Aug 2017 11:07:09 +0100 Subject: [PATCH] Add Edgware and Finchley to sample code in quickstart --- js/projectDocumentationWidget.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index e7673be..8d0c157 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -104,7 +104,9 @@ Spring.SnippetView = Backbone.View.extend({ }, render: function () { - this.model.bootVersion = this.model.version.indexOf("Dalston")!=-1 ? "1.5.2.RELEASE" : + this.model.bootVersion = this.model.version.indexOf("Finchley")!=-1 ? "2.0.0.M3" : + this.model.version.indexOf("Edgware")!=-1 ? "1.5.6.RELEASE" : + this.model.version.indexOf("Dalston")!=-1 ? "1.5.6.RELEASE" : this.model.version.indexOf("Camden")!=-1 ? "1.4.5.RELEASE" : this.model.version.indexOf("Brixton")!=-1 ? "1.3.8.RELEASE" : "1.2.8.RELEASE";