Add Edgware and Finchley to sample code in quickstart

This commit is contained in:
Dave Syer
2017-08-31 11:07:09 +01:00
parent 660d411848
commit bcf4c702ed

View File

@@ -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";