Skip to content

Commit

Permalink
Lowered redirect timeout for home page
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhailbot committed Nov 20, 2015
1 parent 4997ff0 commit f21708a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions client/templates/home/home-alt.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Template.homealt.onRendered(function () {

instance.redirect = Meteor.setTimeout(function() {
Router.go('search.page')
}, 5000);
}, 4100);

Meteor.setInterval(function(){
var countdown = instance.countdown.get();
Expand All @@ -12,7 +12,7 @@ Template.homealt.onRendered(function () {
});

Template.homealt.onCreated(function () {
this.countdown = new ReactiveVar(5);
this.countdown = new ReactiveVar(4);
});

Template.homealt.helpers({
Expand Down
2 changes: 1 addition & 1 deletion server/methods/admin/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Meteor.methods({
return "master";
},
getVersion: function () {
return "1.3.0";
return "1.3.1";
},
checkForUpdate : function () {
var branch = Meteor.call('getBranch');
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.1

0 comments on commit f21708a

Please sign in to comment.