[Generic Search] Remove comments

Per code review, nasa/openmctweb#165
This commit is contained in:
Victor Woeltjen 2015-10-05 09:57:46 -07:00
parent 77b0086d18
commit 5520d90984
2 changed files with 1 additions and 3 deletions

View File

@ -127,9 +127,7 @@ define(
useTimestamp = arguments.length > 1;
function notifyListeners(model) {
// Broadcast a general event...
generalTopic.notify(domainObject);
// ...and also notify listeners watching this specific object.
specificTopic.notify(model);
}

View File

@ -61,7 +61,7 @@ define(
* @memberof platform/core.Throttle#
*/
return function (fn, delay, apply) {
var promise, // Promise for the result of throttled function
var promise,
args = [];
function invoke() {