Changeset - 18428eab23e1
[Not reviewed]
Merge default
0 2 0
Mads Kiilerich - 10 years ago 2015-10-12 18:55:41
madski@unity3d.com
Merge stable
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/bookmarks/bookmarks.html
Show inline comments
 
@@ -28,13 +28,13 @@ ${self.repo_context_bar('switch-to')}
 
    <div class="table">
 
        <%include file='bookmarks_data.html'/>
 
    </div>
 
</div>
 

	
 
<script type="text/javascript">
 
$('#compare_bookmarks','click',function(e){
 
$('#compare_bookmarks').click(function(e){
 
    e.preventDefault();
 
    var org = $('input[name=compare_org]:checked')[0];
 
    var other = $('input[name=compare_other]:checked')[0];
 

	
 
    if(org && other){
 
        var compare_url = "${h.url('compare_url',repo_name=c.repo_name,org_ref_type='book',org_ref_name='__ORG__',other_ref_type='book',other_ref_name='__OTHER__')}";
kallithea/templates/branches/branches.html
Show inline comments
 
@@ -28,13 +28,13 @@ ${self.repo_context_bar('switch-to')}
 
    <div class="table">
 
        <%include file='branches_data.html'/>
 
    </div>
 
</div>
 

	
 
<script type="text/javascript">
 
$('#compare_branches','click',function(e){
 
$('#compare_branches').click(function(e){
 
    e.preventDefault();
 
    var org = $('input[name=compare_org]:checked')[0];
 
    var other = $('input[name=compare_other]:checked')[0];
 

	
 
    if(org && other){
 
        var compare_url = "${h.url('compare_url',repo_name=c.repo_name,org_ref_type='branch',org_ref_name='__ORG__',other_ref_type='branch',other_ref_name='__OTHER__')}";
0 comments (0 inline, 0 general)