clean-documentation-theme icon indicating copy to clipboard operation
clean-documentation-theme copied to clipboard

Object Properties Missing

Open FireController1847 opened this issue 7 years ago • 0 comments

See this stackoverflow question for more details.

When making an object in a class, the properties for the object do not show up.

Example Object

/**
 * The URLs for the ads attributed to this song.
 * @typedef AdUrls
 * @property {String} flexSkip The ad used if the user wants to gain more skips.
 * @property {String} flexReplay The ad used if the user wants to gain more replays.
 * @property {String} flexThumbsDown The ad used if the user wants to skip using a thumbs down.
 * @property {String} nowPlayingStation The ad used for now playing songs.
 * @property {String} nowPlayingStationAdUnit The nowplaying ad unit. (?)
 * @property {String} nowPlayingStationAdTargeting The nowplaying ad 'targeting'. (?)
 * @property {String} backstage The "backstage" ad. (?)
 * @property {String} backstageAdUnit The "backstage" ad unit. (?)
 * @property {String} backstageAdTargeting The "backstage" ad targeting. (?)
 */
this.adUrls = {
  flexSkip: raw.adUrls.flexSkipAdUrl,
  flexReplay: raw.adUrls.flexSkipAdUrl,
  flexThumbsDown: raw.adUrls.flexThumbsDownAdUrl,
  nowPlayingStation: raw.adUrls.nowPlayingStationAdUrl,
  nowPlayingStationAdUnit: raw.adUrls.nowPlayingStationAdUnit,
  nowPlayingStationAdTargeting: raw.adUrls.nowPlayingStationAdTargeting,
  backstage: raw.adUrls.backstageAdUrl,
  backstageAdUnit: raw.adUrls.backstageAdUnit,
  backstageAdTargeting: raw.adUrls.backstageAdTargeting
};

Using default theme: chrome_2018-11-26_16-29-05

Using this theme: chrome_2018-11-26_16-28-39

FireController1847 avatar Nov 26 '18 23:11 FireController1847