Author: ygrego Date: 2015-06-11 14:58:40 +0000 (Thu, 11 Jun 2015) New Revision: 1703 Url: http://forge.nuiton.org/projects/sandbox/repository/revisions/1703 Log: The property _searchManager has been moved on top of contructor because it will be used for the creation of another object. Modified: oipf/lib/js/impl/model/MetadataSearch.js Modified: oipf/lib/js/impl/model/MetadataSearch.js =================================================================== --- oipf/lib/js/impl/model/MetadataSearch.js 2015-06-11 14:41:38 UTC (rev 1702) +++ oipf/lib/js/impl/model/MetadataSearch.js 2015-06-11 14:58:40 UTC (rev 1703) @@ -97,6 +97,8 @@ class MetadataSearch { constructor(searchTarget, searchManager) { + + this._searchManager = searchManager; /* * Description : * The target(s) of the search. Valid values are: @@ -123,9 +125,6 @@ * Visibility Type: readonly SearchResults */ this.result = new SearchResults(this); - - - this._searchManager = searchManager; this._constraints = { channels: [], ratings: []