--- a/src/widgets/Tagcloud.js Fri Apr 27 19:18:21 2012 +0200
+++ b/src/widgets/Tagcloud.js Thu May 03 17:52:52 2012 +0200
@@ -1,6 +1,6 @@
IriSP.Widgets.Tagcloud = function(player, config) {
IriSP.Widgets.Widget.call(this, player, config);
- this.stopwords = IriSP._.uniq(IriSP._.extend([], this.custom_stopwords, this.stopword_lists[this.stopword_language]));
+ this.stopwords = IriSP._.uniq([].concat(this.custom_stopwords).concat(this.stopword_lists[this.stopword_language]));
}
IriSP.Widgets.Tagcloud.prototype = new IriSP.Widgets.Widget();