Skip to content

Commit

Permalink
add missing jsdoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
green3g committed Dec 12, 2016
1 parent 22b2373 commit 4c2a037
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions viewer/js/gis/dijit/Identify.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ define([
/**
* handles an array of layerInfos to call addLayerInfo for each layerInfo
* @param {Array<layerInfo>} layerInfos The array of layer infos
* @returns {undefined}
*/
addLayerInfos: function (layerInfos) {
array.forEach(layerInfos, lang.hitch(this, 'addLayerInfo'));
Expand All @@ -106,6 +107,7 @@ define([
* Initializes an infoTemplate on a layerInfo.layer object if it doesn't
* exist already.
* @param {object} layerInfo A cmv layerInfo object that contains a layer property
* @return {undefined}
*/
addLayerInfo: function (layerInfo) {
var lyrId = layerInfo.layer.id, layer = this.map.getLayer(lyrId), infoTemplate;
Expand Down

0 comments on commit 4c2a037

Please sign in to comment.