Skip to content

Commit

Permalink
show "title" tag for mouse hover in category list #354
Browse files Browse the repository at this point in the history
  • Loading branch information
Rello committed Dec 9, 2018
1 parent 2c9ea69 commit 2ae20c8
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 2 deletions.
85 changes: 84 additions & 1 deletion js/app-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,10 @@ Audios.prototype.loadCategory = function () {
li.append(spanName);
li.append(spanCounter);
} else {
spanName = $('<span/>').attr({'class': 'pl-name'}).text(el.name).click($this.loadIndividualCategory.bind($this));
spanName = $('<span/>').attr({
'class': 'pl-name',
'title': el.name
}).text(el.name).click($this.loadIndividualCategory.bind($this));
li.append(spanName);
li.append(spanCounter);
}
Expand Down

0 comments on commit 2ae20c8

Please sign in to comment.