diff -r 24754fe4baaf -r e457ec945e50 client/js/ldtjson-bin.js --- a/client/js/ldtjson-bin.js Fri Apr 24 18:02:09 2015 +0200 +++ b/client/js/ldtjson-bin.js Sat Apr 25 04:13:53 2015 +0200 @@ -61,7 +61,7 @@ _this = this, count = 0; _this.title_$.text('LDT Project: "' + _projtitle + '"'); - _(_this.data.tags).map(function(_tag) { + _.map(_this.data.tags,function(_tag) { var _title = _tag.meta["dc:title"]; if (!search.isempty && !search.test(_title)) { return; @@ -76,7 +76,7 @@ }); }); _html += '
  • Annotations

  • '; - _(_this.data.annotations).map(function(_annotation) { + _.map(_this.data.annotations,function(_annotation) { var _description = _annotation.content.description, _title = _annotation.content.title.replace(_description,""); if (!search.isempty && !search.test(_title) && !search.test(_description)) { @@ -198,7 +198,7 @@ var _html = '', _this = this, count = 0; - _(this.data.objects).each(function(_segment) { + _.each(this.data.objects,function(_segment) { var _description = _segment.abstract, _title = _segment.title; if (!search.isempty && !search.test(_title) && !search.test(_description)) {