Changeset - ad4bc0f66d6a
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 13 years ago 2012-09-05 23:55:29
marcin@python-works.com
fixes #557 follower counter always counts up
2 files changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -36,6 +36,7 @@ fixes
 
- fixed status of code-review in preview windows of pull request
 
- git forks were not initialized at bare repos
 
- fixes #555 fixes issues with comparing non-related repositories
 
- fixes #557 follower counter always counts up
 

	
 
1.4.0 (**2012-09-03**)
 
----------------------
rhodecode/templates/base/root.html
Show inline comments
 
@@ -90,7 +90,7 @@
 
                    f.setAttribute('class','follow');
 
                    f.setAttribute('title',_TM['Start following this repository']);
 
                    if(f_cnt){
 
                        var cnt = Number(f_cnt.innerHTML)+1;
 
                        var cnt = Number(f_cnt.innerHTML)-1;
 
                        f_cnt.innerHTML = cnt;
 
                    }
 
                }
0 comments (0 inline, 0 general)