added titles attributes to studio, random, search links

This commit is contained in:
2018-10-23 19:36:55 +02:00
parent 34405c3db8
commit d339fdd732
5 changed files with 11 additions and 3 deletions
@@ -1316,7 +1316,11 @@
this.active = false;
this.playlist = playlist;
this.path = drupalSettings.path.baseUrl+drupalSettings.path.pathPrefix+'#random'
this.$btn = $('<a>').html('Shuffle').attr('href',this.path).addClass('random-player-btn');
this.$btn = $('<a>')
.html('Shuffle')
.attr('href',this.path)
.attr('title', drupalSettings.edlp_corpus.random_link_title)
.addClass('random-player-btn');
this.init();
};
RandomPlayer.prototype = {