提交 e3c0daa0 编写于 作者: N Nicolas Hennion

Merge pull request #704 from notFloran/web-ui-sort-cusor

[WebUI] add "pointer" cursor for sortable columns
......@@ -36,6 +36,9 @@ body {
font-weight: bold;
color: white;
}
.sortable {
cursor: pointer;
}
.text-right {
text-align: right;
}
......
......@@ -6,6 +6,8 @@ glancesApp.directive("sortableTh", function() {
},
link: function (scope, element, attrs) {
element.addClass('sortable');
scope.$watch(function() {
return scope.sorter.column;
}, function(newValue, oldValue) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册