[Search] Fix mutation.listen

Update mutation.listen to match previous variable
names changes related to nasa/openmctweb#141.
This commit is contained in:
Victor Woeltjen 2015-09-30 13:09:55 -07:00
parent 78f3f8367e
commit b632926d8e

View File

@ -171,7 +171,7 @@ define(
* @memberof platform/core.MutationCapability#
*/
MutationCapability.prototype.listen = function (listener) {
return this.mutationTopic.listen(listener);
return this.specificMutationTopic.listen(listener);
};
/**