aboutsummaryrefslogtreecommitdiff
path: root/public/ng/js
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2015-02-04 19:14:13 -0500
committerUnknwon <joe2010xtmf@163.com>2015-02-04 19:14:13 -0500
commite0329c0eb5eb54db81aab95bc2856b1d2036a022 (patch)
tree937517ee314284194cb57b4d80d5a64eaf825dbe /public/ng/js
parent4dfffee9fb716672c7170013a4f69ca759f2dd51 (diff)
parent3e307e7862b29db87c99cccbf0866cb7be52b13c (diff)
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'public/ng/js')
-rw-r--r--public/ng/js/gogs.js21
1 files changed, 14 insertions, 7 deletions
diff --git a/public/ng/js/gogs.js b/public/ng/js/gogs.js
index f0bb7633..47c2e38f 100644
--- a/public/ng/js/gogs.js
+++ b/public/ng/js/gogs.js
@@ -141,6 +141,7 @@ var Gogs = {};
Gogs.renderCodeView = function () {
function selectRange($list, $select, $from) {
$list.removeClass('active');
+ $list.parents('tr').find('td').removeClass('selected-line');
if ($from) {
var a = parseInt($select.attr('rel').substr(1));
var b = parseInt($from.attr('rel').substr(1));
@@ -153,21 +154,27 @@ var Gogs = {};
}
var classes = [];
for (i = a; i <= b; i++) {
- classes.push('.L' + i);
+ classes.push('[rel=L' + i + ']');
}
$list.filter(classes.join(',')).addClass('active');
+ $list.filter(classes.join(',')).parents('tr').find('td').addClass('selected-line');
$.changeHash('#L' + a + '-' + 'L' + b);
return
}
}
$select.addClass('active');
+ $select.parents('tr').find('td').addClass('selected-line');
$.changeHash('#' + $select.attr('rel'));
}
$(document).on('click', '.lines-num span', function (e) {
var $select = $(this);
- var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li');
- selectRange($list, $list.filter('[rel=' + $select.attr('rel') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null));
+ var $list = $select.parent().siblings('.lines-code').parents().find('td.lines-num > span');
+ selectRange(
+ $list,
+ $list.filter('[rel=' + $select.attr('rel') + ']'),
+ (e.shiftKey && $list.filter('.active').length ? $list.filter('.active').eq(0) : null)
+ );
$.deSelect();
});
@@ -185,17 +192,17 @@ var Gogs = {};
$(window).on('hashchange', function (e) {
var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/);
- var $list = $('.code-view ol.linenums > li');
+ var $list = $('.code-view td.lines-num > span');
var $first;
if (m) {
- $first = $list.filter('.' + m[1]);
- selectRange($list, $first, $list.filter('.' + m[2]));
+ $first = $list.filter('[rel=' + m[1] + ']');
+ selectRange($list, $first, $list.filter('[rel=' + m[2] + ']'));
$("html, body").scrollTop($first.offset().top - 200);
return;
}
m = window.location.hash.match(/^#(L\d+)$/);
if (m) {
- $first = $list.filter('.' + m[1]);
+ $first = $list.filter('[rel=' + m[1] + ']');
selectRange($list, $first);
$("html, body").scrollTop($first.offset().top - 200);
}