Show always the skill name like a tooltip on skill wheel - refs BT#10175

1.10.x
Angel Fernando Quiroz Campos 10 years ago
parent 5d2cd949a8
commit 87af6dcf9c
  1. 4
      main/inc/lib/skill.lib.php
  2. 8
      main/template/default/skill/skill_wheel.js.tpl

@ -984,9 +984,11 @@ class Skill extends Model
!empty($skill['short_code']) &&
api_get_setting('show_full_skill_name_on_skill_wheel') === 'false'
) {
$skill['data']['name'] = $skill['short_code'];
$skill['data']['short_code'] = $skill['short_code'];
}
$skill['data']['name'] = $skill['name'];
// In order to paint all members of a family with the same color
if (empty($skill_id)) {
if ($skill['parent_id'] == 1) {

@ -600,6 +600,10 @@ function load_nodes(load_skill_id, main_depth, extra_parent_id) {
textEnter.append("tspan")
.attr("x", 0)
.text(function(d) {
if (d.short_code) {
return d.short_code;
}
if (d.depth && d.name) {
var nameParts = d.name.split(' ');
@ -617,6 +621,10 @@ function load_nodes(load_skill_id, main_depth, extra_parent_id) {
.attr("x", 0)
.attr("dy", "1em")
.text(function(d) {
if (d.short_code) {
return null;
}
if (d.depth && d.name) {
var nameParts = d.name.split(' ');

Loading…
Cancel
Save