Files
etcd/mod/dashboard/app/scripts/common/directives/highlight.js

14 lines
293 B
JavaScript

'use strict';
angular.module('etcdControlPanel')
.directive('highlight', function() {
return {
restrict: 'A',
link: function(scope, element, attrs) {
if('#' + scope.etcdPath === attrs.href) {
element.parent().parent().addClass('etcd-selected');
}
}
};
});