From 3f8a523ffe5ca8f594c2f935bc6d68d7ca1f64ac Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Wed, 24 Aug 2016 10:12:42 +0100 Subject: [PATCH] Update bootVersions in quickstart snippets --- js/projectDocumentationWidget.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/projectDocumentationWidget.js b/js/projectDocumentationWidget.js index a3b5b4d..f948b82 100644 --- a/js/projectDocumentationWidget.js +++ b/js/projectDocumentationWidget.js @@ -151,7 +151,7 @@ Spring.SnippetView = Backbone.View.extend({ render: function () { - this.model.bootVersion = this.model.version.indexOf("Brixton")!=-1 ? "1.3.5.RELEASE" : "1.2.8.RELEASE"; + this.model.bootVersion = this.model.version.indexOf("Camden")!=-1 ? "1.4.0.RELEASE" : (this.model.version.indexOf("Brixton")!=-1 ? "1.3.7.RELEASE" : "1.2.8.RELEASE"); console.log(JSON.stringify(this.model)) var html = $(this.combinedTemplate(this.model)); this.$el.html(html);