equal
deleted
inserted
replaced
1 IriSP.Widgets.Tagcloud = function(player, config) { |
1 IriSP.Widgets.Tagcloud = function(player, config) { |
2 IriSP.Widgets.Widget.call(this, player, config); |
2 IriSP.Widgets.Widget.call(this, player, config); |
3 this.stopwords = IriSP._.uniq(IriSP._.extend([], this.custom_stopwords, this.stopword_lists[this.stopword_language])); |
3 this.stopwords = IriSP._.uniq([].concat(this.custom_stopwords).concat(this.stopword_lists[this.stopword_language])); |
4 } |
4 } |
5 |
5 |
6 IriSP.Widgets.Tagcloud.prototype = new IriSP.Widgets.Widget(); |
6 IriSP.Widgets.Tagcloud.prototype = new IriSP.Widgets.Widget(); |
7 |
7 |
8 IriSP.Widgets.Tagcloud.prototype.template = |
8 IriSP.Widgets.Tagcloud.prototype.template = |