##// END OF EJS Templates
fixes #557 follower counter always counts up
marcink -
r2812:ad4bc0f6 beta
parent child Browse files
Show More
@@ -36,6 +36,7 b' fixes'
36 36 - fixed status of code-review in preview windows of pull request
37 37 - git forks were not initialized at bare repos
38 38 - fixes #555 fixes issues with comparing non-related repositories
39 - fixes #557 follower counter always counts up
39 40
40 41 1.4.0 (**2012-09-03**)
41 42 ----------------------
@@ -90,7 +90,7 b''
90 90 f.setAttribute('class','follow');
91 91 f.setAttribute('title',_TM['Start following this repository']);
92 92 if(f_cnt){
93 var cnt = Number(f_cnt.innerHTML)+1;
93 var cnt = Number(f_cnt.innerHTML)-1;
94 94 f_cnt.innerHTML = cnt;
95 95 }
96 96 }
General Comments 0
You need to be logged in to leave comments. Login now