diff rhodecode/templates/pullrequests/pullrequest.html @ 3338:cfc0fef66ddd beta

whitespace cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 08 Feb 2013 22:16:25 +0100
parents dcd1c159a132
children 01fe360a66c0
line wrap: on
line diff
--- a/rhodecode/templates/pullrequests/pullrequest.html	Fri Feb 08 22:16:07 2013 +0100
+++ b/rhodecode/templates/pullrequests/pullrequest.html	Fri Feb 08 22:16:25 2013 +0100
@@ -140,10 +140,10 @@
                          rev_end=request.GET.get('rev_end',''))}";
       var org_repo = YUQ('#pull_request_form #org_repo')[0].value;
       var org_ref = YUQ('#pull_request_form #org_ref')[0].value.split(':');
-      
+
       var other_repo = YUQ('#pull_request_form #other_repo')[0].value;
       var other_ref = YUQ('#pull_request_form #other_ref')[0].value.split(':');
-      
+
       var select_refs = YUQ('#pull_request_form select.refs')
       var rev_data = {
     	  'org_repo': org_repo,
@@ -151,9 +151,9 @@
     	  'org_ref_type': org_ref[0],
     	  'other_repo': other_repo,
           'other_ref': other_ref[1],
-          'other_ref_type': other_ref[0],    	  
+          'other_ref_type': other_ref[0],
       }; // gather the org/other ref and repo here
-      
+
       for (k in rev_data){
     	  url = url.replace('__'+k+'__',rev_data[k]);
       }