# HG changeset patch # User cavaliet # Date 1382695313 -7200 # Node ID 1449502d69c58122ea11f555da2095057ee1680f # Parent 2607ea318318b8651573d7c4027da726f994d0af corrections and optimisations 2 diff -r 2607ea318318 -r 1449502d69c5 web/fullrenkan.html --- a/web/fullrenkan.html Fri Oct 25 11:52:08 2013 +0200 +++ b/web/fullrenkan.html Fri Oct 25 12:01:53 2013 +0200 @@ -166,7 +166,7 @@ + ' type: "Tagcloud",' + ' include_titles: false,' + ' include_descriptions: false,' - + ' tag_count: 99' + + ' tag_count: 200' + ' }'; if(display_renkan==true){ diff -r 2607ea318318 -r 1449502d69c5 web/index.html --- a/web/index.html Fri Oct 25 11:52:08 2013 +0200 +++ b/web/index.html Fri Oct 25 12:01:53 2013 +0200 @@ -229,7 +229,7 @@ + ' type: "Tagcloud",' + ' include_titles: false,' + ' include_descriptions: false,' - + ' tag_count: 99' + + ' tag_count: 200' + ' }' + ' ]' + ' };' diff -r 2607ea318318 -r 1449502d69c5 web/lib/metadataplayer/LdtPlayer-core.js --- a/web/lib/metadataplayer/LdtPlayer-core.js Fri Oct 25 11:52:08 2013 +0200 +++ b/web/lib/metadataplayer/LdtPlayer-core.js Fri Oct 25 12:01:53 2013 +0200 @@ -448,7 +448,8 @@ var res = this.filter(function(_element, _k) { var titlematch = rgxp.test(_element.title), descmatch = rgxp.test(_element.description), - _isfound = !!(titlematch || descmatch); + tagsmatch = rgxp.test(_element.getTagTexts()), + _isfound = !!(titlematch || descmatch || tagsmatch); _element.found = _isfound; _element.trigger(_isfound ? "found" : "not-found"); return _isfound;