comparison rhodecode/templates/pullrequests/pullrequest_show.html @ 3197:b4f401524060 beta

html: don't use tabs
author Mads Kiilerich <madski@unity3d.com>
date Tue, 22 Jan 2013 23:44:38 +0100
parents 5d1d25c1c700
children 81bbb8086f03
comparison
equal deleted inserted replaced
3196:809fe2d392f8 3197:b4f401524060
187 close_btn=True, change_status=c.allowed_to_change_status)} 187 close_btn=True, change_status=c.allowed_to_change_status)}
188 %endif 188 %endif
189 189
190 <script type="text/javascript"> 190 <script type="text/javascript">
191 YUE.onDOMReady(function(){ 191 YUE.onDOMReady(function(){
192 PullRequestAutoComplete('user', 'reviewers_container', _USERS_AC_DATA, _GROUPS_AC_DATA); 192 PullRequestAutoComplete('user', 'reviewers_container', _USERS_AC_DATA, _GROUPS_AC_DATA);
193 193
194 YUE.on(YUQ('.show-inline-comments'),'change',function(e){ 194 YUE.on(YUQ('.show-inline-comments'),'change',function(e){
195 var show = 'none'; 195 var show = 'none';
196 var target = e.currentTarget; 196 var target = e.currentTarget;
197 if(target.checked){ 197 if(target.checked){
216 // inject comments into they proper positions 216 // inject comments into they proper positions
217 var file_comments = YUQ('.inline-comment-placeholder'); 217 var file_comments = YUQ('.inline-comment-placeholder');
218 renderInlineComments(file_comments); 218 renderInlineComments(file_comments);
219 219
220 YUE.on(YUD.get('update_pull_request'),'click',function(e){ 220 YUE.on(YUD.get('update_pull_request'),'click',function(e){
221 updateReviewers(); 221 updateReviewers();
222 }) 222 })
223 }) 223 })
224 </script> 224 </script>
225 225
226 </div> 226 </div>