mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	fix single bare page link
This commit is contained in:
		| @@ -79,5 +79,6 @@ func RepoAssignment(redirect bool) martini.Handler { | ||||
| 		ctx.Data["CloneLink"] = ctx.Repo.CloneLink | ||||
| 		ctx.Data["RepositoryLink"] = ctx.Data["Title"] | ||||
| 		ctx.Data["IsRepositoryOwner"] = ctx.Repo.IsOwner | ||||
| 		ctx.Data["IsRepositoryWatching"] = ctx.Repo.IsWatching | ||||
| 	} | ||||
| } | ||||
|   | ||||
| @@ -72,18 +72,18 @@ var Gogits = { | ||||
|         prettyPrint(); | ||||
|  | ||||
|         var $lineNums = $pre.parent().siblings('.lines-num'); | ||||
|         if($lineNums.length > 0){ | ||||
|         if ($lineNums.length > 0) { | ||||
|             var nums = $pre.find('ol.linenums > li').length; | ||||
|             for(var i=0;i < nums;i++){ | ||||
|                 $lineNums.append('<span id="L'+i+'" rel=".L'+i+'">'+(i+1)+'</span>'); | ||||
|             for (var i = 1; i <= nums; i++) { | ||||
|                 $lineNums.append('<span id="L' + i + '" rel=".L' + i + '">' + i + '</span>'); | ||||
|             } | ||||
|  | ||||
|             var last; | ||||
|             $(document).on('click', '.lines-num span', function(){ | ||||
|             $(document).on('click', '.lines-num span', function () { | ||||
|                 var $e = $(this); | ||||
|                 console.log($e.parent().siblings('.lines-code').find('ol.linenums > ' + $e.attr('rel'))); | ||||
|                 console.log('ol.linenums > ' + $e.attr('rel')); | ||||
|                 if(last){ | ||||
|                 if (last) { | ||||
|                     last.removeClass('active'); | ||||
|                 } | ||||
|                 last = $e.parent().siblings('.lines-code').find('ol.linenums > ' + $e.attr('rel')); | ||||
| @@ -98,12 +98,12 @@ var Gogits = { | ||||
|             var node = $(this); | ||||
|             var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\w\- ]/g, '').replace(/[ ]/g, '-')); | ||||
|             var name = val; | ||||
|             if(headers[val] > 0){ | ||||
|             if (headers[val] > 0) { | ||||
|                 name = val + '-' + headers[val]; | ||||
|             } | ||||
|             if(headers[val] == undefined){ | ||||
|             if (headers[val] == undefined) { | ||||
|                 headers[val] = 1; | ||||
|             }else{ | ||||
|             } else { | ||||
|                 headers[val] += 1; | ||||
|             } | ||||
|             node = node.wrap('<div id="' + name + '" class="anchor-wrap" ></div>'); | ||||
| @@ -183,6 +183,7 @@ function initUserSetting() { | ||||
| } | ||||
|  | ||||
| function initRepository() { | ||||
|     (function () { | ||||
|         var $guide = $('.guide-box'); | ||||
|         if ($guide.length) { | ||||
|             var $url = $('#guide-clone-url'); | ||||
| @@ -197,6 +198,7 @@ function initRepository() { | ||||
|             }).eq(0).trigger("click"); | ||||
|             // todo copy to clipboard | ||||
|         } | ||||
|     })(); | ||||
| } | ||||
|  | ||||
| (function ($) { | ||||
|   | ||||
| @@ -13,7 +13,7 @@ | ||||
|                         <span class="caret"></span> | ||||
|                     </button> | ||||
|                 </div> | ||||
|                 <div class="btn-group" id="gogs-repo-watching"> | ||||
|                 <div class="btn-group {{if .IsRepositoryWatching}}watching{{end}}" id="gogs-repo-watching"> | ||||
|                     <button type="button" class="btn btn-default"><i class="fa fa-eye fa-lg fa-m"></i></button> | ||||
|                     <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> | ||||
|                         <span class="caret"></span> | ||||
|   | ||||
| @@ -6,8 +6,8 @@ | ||||
|         <h3>Clone this repository</h3> | ||||
|         <div class="input-group col-md-8 col-md-offset-2 guide-buttons"> | ||||
|             <span class="input-group-btn"> | ||||
|                 <button class="btn btn-default" data-url="{{.CloneLink.SSH}}" type="button">SSH</button> | ||||
|                 <button class="btn btn-default" data-url="{{.CloneLink.HTTPS}}" type="button">HTTPS</button> | ||||
|                 <button class="btn btn-default" data-link="{{.CloneLink.SSH}}" type="button">SSH</button> | ||||
|                 <button class="btn btn-default" data-link="{{.CloneLink.HTTPS}}" type="button">HTTPS</button> | ||||
|             </span> | ||||
|             <input type="text" class="form-control" id="guide-clone-url" value="" readonly/> | ||||
|             <span class="input-group-btn"> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user