diff --git a/react/features/app/components/AbstractApp.js b/react/features/app/components/AbstractApp.js index 161ce95fc..4c7ace459 100644 --- a/react/features/app/components/AbstractApp.js +++ b/react/features/app/components/AbstractApp.js @@ -39,7 +39,7 @@ export class AbstractApp extends Component { * The URL, if any, with which the app was launched. */ url: React.PropTypes.string - } + }; /** * Initializes a new AbstractApp instance. diff --git a/react/features/base/dialog/components/AbstractDialog.js b/react/features/base/dialog/components/AbstractDialog.js index fa01dbbd0..e0649dfe4 100644 --- a/react/features/base/dialog/components/AbstractDialog.js +++ b/react/features/base/dialog/components/AbstractDialog.js @@ -64,7 +64,7 @@ export default class AbstractDialog extends Component { * the latter is unused. */ titleString: React.PropTypes.string - } + }; /** * Initializes a new Dialog instance. diff --git a/react/features/base/dialog/components/Dialog.native.js b/react/features/base/dialog/components/Dialog.native.js index 4905fe169..4fc7207f9 100644 --- a/react/features/base/dialog/components/Dialog.native.js +++ b/react/features/base/dialog/components/Dialog.native.js @@ -21,7 +21,7 @@ class Dialog extends AbstractDialog { * I18n key to put as body title. */ bodyKey: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/dialog/components/Dialog.web.js b/react/features/base/dialog/components/Dialog.web.js index dd1b264fe..d44b340ed 100644 --- a/react/features/base/dialog/components/Dialog.web.js +++ b/react/features/base/dialog/components/Dialog.web.js @@ -38,7 +38,7 @@ class Dialog extends AbstractDialog { * - string value for percentage */ width: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/dialog/components/DialogContainer.js b/react/features/base/dialog/components/DialogContainer.js index ee4bdcd85..f3cd47072 100644 --- a/react/features/base/dialog/components/DialogContainer.js +++ b/react/features/base/dialog/components/DialogContainer.js @@ -23,7 +23,7 @@ export class DialogContainer extends Component { * The props to pass to the component that will be rendered. */ _componentProps: React.PropTypes.object - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/media/components/AbstractVideoTrack.js b/react/features/base/media/components/AbstractVideoTrack.js index cb8587f7b..d15cded48 100644 --- a/react/features/base/media/components/AbstractVideoTrack.js +++ b/react/features/base/media/components/AbstractVideoTrack.js @@ -27,7 +27,7 @@ export class AbstractVideoTrack extends Component { * Video class for React Native. */ zOrder: React.PropTypes.number - } + }; /** * Initializes a new AbstractVideoTrack instance. diff --git a/react/features/base/media/components/native/Audio.js b/react/features/base/media/components/native/Audio.js index 6e99c15d7..82d9cfad1 100644 --- a/react/features/base/media/components/native/Audio.js +++ b/react/features/base/media/components/native/Audio.js @@ -13,7 +13,7 @@ export class Audio extends Component { static propTypes = { muted: React.PropTypes.bool, stream: React.PropTypes.object - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/media/components/native/Video.js b/react/features/base/media/components/native/Video.js index 7ed4bcdb6..a19dd570b 100644 --- a/react/features/base/media/components/native/Video.js +++ b/react/features/base/media/components/native/Video.js @@ -43,7 +43,7 @@ export class Video extends Component { * 1 for the local video(s) which appear above the remote video(s). */ zOrder: React.PropTypes.number - } + }; /** * React Component method that executes once component is mounted. diff --git a/react/features/base/participants/components/Avatar.native.js b/react/features/base/participants/components/Avatar.native.js index 6ca750e51..b0bdcde9d 100644 --- a/react/features/base/participants/components/Avatar.native.js +++ b/react/features/base/participants/components/Avatar.native.js @@ -17,7 +17,7 @@ export default class Avatar extends Component { */ style: React.PropTypes.object, uri: React.PropTypes.string - } + }; /** * Initializes a new Avatar instance. diff --git a/react/features/base/participants/components/Avatar.web.js b/react/features/base/participants/components/Avatar.web.js index 61aaa61f3..87caa5105 100644 --- a/react/features/base/participants/components/Avatar.web.js +++ b/react/features/base/participants/components/Avatar.web.js @@ -16,7 +16,7 @@ export default class Avatar extends Component { * @type {string} */ uri: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/participants/components/ParticipantView.native.js b/react/features/base/participants/components/ParticipantView.native.js index 2b1f30467..82ce2acb0 100644 --- a/react/features/base/participants/components/ParticipantView.native.js +++ b/react/features/base/participants/components/ParticipantView.native.js @@ -86,7 +86,7 @@ class ParticipantView extends Component { * Video class for React Native. */ zOrder: React.PropTypes.number - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/base/react/components/AbstractContainer.js b/react/features/base/react/components/AbstractContainer.js index f718fc3a8..8a4f1d6ea 100644 --- a/react/features/base/react/components/AbstractContainer.js +++ b/react/features/base/react/components/AbstractContainer.js @@ -39,7 +39,7 @@ export default class AbstractContainer extends Component { * instance is to be hidden or not rendered at all. */ visible: React.PropTypes.bool - } + }; /** * Renders this AbstractContainer as a React Component of a specific type. diff --git a/react/features/base/react/components/Link.native.js b/react/features/base/react/components/Link.native.js index 18c1e73a0..39006b1a5 100644 --- a/react/features/base/react/components/Link.native.js +++ b/react/features/base/react/components/Link.native.js @@ -31,7 +31,7 @@ export class Link extends Component { * The URL to be opened when this Link is clicked/pressed. */ url: React.PropTypes.string - } + }; /** * Initializes a new Link instance. diff --git a/react/features/conference/components/Conference.web.js b/react/features/conference/components/Conference.web.js index 887634b9b..72af2ad10 100644 --- a/react/features/conference/components/Conference.web.js +++ b/react/features/conference/components/Conference.web.js @@ -26,7 +26,7 @@ class Conference extends Component { */ static propTypes = { dispatch: React.PropTypes.func - } + }; /** * Until we don't rewrite UI using react components diff --git a/react/features/desktop-picker/components/DesktopPicker.js b/react/features/desktop-picker/components/DesktopPicker.js index 32cc4ec08..f734e4e6c 100644 --- a/react/features/desktop-picker/components/DesktopPicker.js +++ b/react/features/desktop-picker/components/DesktopPicker.js @@ -73,7 +73,7 @@ class DesktopPicker extends Component { * Used to obtain translations. */ t: React.PropTypes.func - } + }; /** * Initializes a new DesktopPicker instance. diff --git a/react/features/desktop-picker/components/DesktopPickerPane.js b/react/features/desktop-picker/components/DesktopPickerPane.js index b45d4f104..e4d1d1d9e 100644 --- a/react/features/desktop-picker/components/DesktopPickerPane.js +++ b/react/features/desktop-picker/components/DesktopPickerPane.js @@ -39,7 +39,7 @@ class DesktopPickerPane extends Component { * The source type of the DesktopCapturerSources to display. */ type: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/desktop-picker/components/DesktopSourcePreview.js b/react/features/desktop-picker/components/DesktopSourcePreview.js index ebb0de62d..76394f1a7 100644 --- a/react/features/desktop-picker/components/DesktopSourcePreview.js +++ b/react/features/desktop-picker/components/DesktopSourcePreview.js @@ -35,7 +35,7 @@ class DesktopSourcePreview extends Component { * The DesktopCapturerSource to display. */ source: React.PropTypes.object - } + }; /** * Initializes a new DesktopSourcePreview instance. diff --git a/react/features/device-selection/components/AudioInputPreview.js b/react/features/device-selection/components/AudioInputPreview.js index 8dfba52cd..a99fefbaf 100644 --- a/react/features/device-selection/components/AudioInputPreview.js +++ b/react/features/device-selection/components/AudioInputPreview.js @@ -16,7 +16,7 @@ class AudioInputPreview extends PureComponent { * The JitsiLocalTrack to show an audio level meter for. */ track: React.PropTypes.object - } + }; /** * Initializes a new AudioInputPreview instance. diff --git a/react/features/device-selection/components/AudioOutputPreview.js b/react/features/device-selection/components/AudioOutputPreview.js index addd95f40..ba4baaf71 100644 --- a/react/features/device-selection/components/AudioOutputPreview.js +++ b/react/features/device-selection/components/AudioOutputPreview.js @@ -25,7 +25,7 @@ class AudioOutputPreview extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new AudioOutputPreview instance. diff --git a/react/features/device-selection/components/DeviceSelectionDialog.js b/react/features/device-selection/components/DeviceSelectionDialog.js index abb8198b2..ee1f7a8d1 100644 --- a/react/features/device-selection/components/DeviceSelectionDialog.js +++ b/react/features/device-selection/components/DeviceSelectionDialog.js @@ -102,7 +102,7 @@ class DeviceSelectionDialog extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new DeviceSelectionDialog instance. diff --git a/react/features/device-selection/components/DeviceSelector.js b/react/features/device-selection/components/DeviceSelector.js index 4b5263ece..af389925d 100644 --- a/react/features/device-selection/components/DeviceSelector.js +++ b/react/features/device-selection/components/DeviceSelector.js @@ -58,7 +58,7 @@ class DeviceSelector extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new DeviceSelector instance. diff --git a/react/features/device-selection/components/VideoInputPreview.js b/react/features/device-selection/components/VideoInputPreview.js index 23d74640d..ef536f595 100644 --- a/react/features/device-selection/components/VideoInputPreview.js +++ b/react/features/device-selection/components/VideoInputPreview.js @@ -32,7 +32,7 @@ class VideoInputPreview extends Component { * The JitsiLocalTrack to display. */ track: React.PropTypes.object - } + }; /** * Initializes a new VideoInputPreview instance. diff --git a/react/features/dial-out/components/CountryIcon.js b/react/features/dial-out/components/CountryIcon.js index 231de0762..678229c27 100644 --- a/react/features/dial-out/components/CountryIcon.js +++ b/react/features/dial-out/components/CountryIcon.js @@ -19,7 +19,7 @@ class CountryIcon extends Component { * The 2-letter country code. */ countryCode: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/dial-out/components/DialOutDialog.web.js b/react/features/dial-out/components/DialOutDialog.web.js index dbd09aec5..6f9962245 100644 --- a/react/features/dial-out/components/DialOutDialog.web.js +++ b/react/features/dial-out/components/DialOutDialog.web.js @@ -43,7 +43,7 @@ class DialOutDialog extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code DialOutNumbersForm} instance. diff --git a/react/features/dial-out/components/DialOutNumbersForm.web.js b/react/features/dial-out/components/DialOutNumbersForm.web.js index 881674bc6..023a1ea7f 100644 --- a/react/features/dial-out/components/DialOutNumbersForm.web.js +++ b/react/features/dial-out/components/DialOutNumbersForm.web.js @@ -57,7 +57,7 @@ class DialOutNumbersForm extends Component { * Invoked to send an ajax request for dial-out codes. */ updateDialOutCodes: React.PropTypes.func - } + }; /** * Initializes a new {@code DialOutNumbersForm} instance. diff --git a/react/features/filmstrip/components/Filmstrip.native.js b/react/features/filmstrip/components/Filmstrip.native.js index 1189ea89a..2f9f13f30 100644 --- a/react/features/filmstrip/components/Filmstrip.native.js +++ b/react/features/filmstrip/components/Filmstrip.native.js @@ -37,7 +37,7 @@ class Filmstrip extends Component { * @type {boolean} */ _visible: React.PropTypes.bool.isRequired - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/filmstrip/components/Thumbnail.js b/react/features/filmstrip/components/Thumbnail.js index 04659d6ff..b4d17c9a6 100644 --- a/react/features/filmstrip/components/Thumbnail.js +++ b/react/features/filmstrip/components/Thumbnail.js @@ -34,7 +34,7 @@ class Thumbnail extends Component { _videoTrack: React.PropTypes.object, dispatch: React.PropTypes.func, participant: React.PropTypes.object - } + }; /** * Initializes new Video Thumbnail component. diff --git a/react/features/invite/components/AddPasswordForm.js b/react/features/invite/components/AddPasswordForm.js index 4e5fff075..16503b9cc 100644 --- a/react/features/invite/components/AddPasswordForm.js +++ b/react/features/invite/components/AddPasswordForm.js @@ -30,7 +30,7 @@ class AddPasswordForm extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code AddPasswordForm} instance. diff --git a/react/features/invite/components/DialInNumbersForm.js b/react/features/invite/components/DialInNumbersForm.js index 48ad4b3ba..aaa5edf34 100644 --- a/react/features/invite/components/DialInNumbersForm.js +++ b/react/features/invite/components/DialInNumbersForm.js @@ -50,7 +50,7 @@ class DialInNumbersForm extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code DialInNumbersForm} instance. diff --git a/react/features/invite/components/InviteDialog.js b/react/features/invite/components/InviteDialog.js index a356f04eb..235decc92 100644 --- a/react/features/invite/components/InviteDialog.js +++ b/react/features/invite/components/InviteDialog.js @@ -45,7 +45,7 @@ class InviteDialog extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Reports an analytics event for the invite modal being closed. diff --git a/react/features/invite/components/LockStatePanel.js b/react/features/invite/components/LockStatePanel.js index 0439bb941..006a7bedc 100644 --- a/react/features/invite/components/LockStatePanel.js +++ b/react/features/invite/components/LockStatePanel.js @@ -21,7 +21,7 @@ class LockStatePanel extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/invite/components/PasswordContainer.js b/react/features/invite/components/PasswordContainer.js index 956237188..922df9d42 100644 --- a/react/features/invite/components/PasswordContainer.js +++ b/react/features/invite/components/PasswordContainer.js @@ -46,7 +46,7 @@ class PasswordContainer extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code PasswordContainer} instance. diff --git a/react/features/invite/components/RemovePasswordForm.js b/react/features/invite/components/RemovePasswordForm.js index 69925c5ef..fc5287b63 100644 --- a/react/features/invite/components/RemovePasswordForm.js +++ b/react/features/invite/components/RemovePasswordForm.js @@ -40,7 +40,7 @@ class RemovePasswordForm extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code RemovePasswordForm} instance. diff --git a/react/features/invite/components/ShareLinkForm.js b/react/features/invite/components/ShareLinkForm.js index e2a7a5fb0..84f93bbfe 100644 --- a/react/features/invite/components/ShareLinkForm.js +++ b/react/features/invite/components/ShareLinkForm.js @@ -24,7 +24,7 @@ class ShareLinkForm extends Component { * The value to be displayed and copied into the clipboard. */ toCopy: React.PropTypes.string - } + }; /** * Initializes a new {@code ShareLinkForm} instance. diff --git a/react/features/large-video/components/LargeVideo.native.js b/react/features/large-video/components/LargeVideo.native.js index 6f623e95e..cac3a506c 100644 --- a/react/features/large-video/components/LargeVideo.native.js +++ b/react/features/large-video/components/LargeVideo.native.js @@ -26,7 +26,7 @@ class LargeVideo extends Component { * @private */ _participantId: React.PropTypes.string - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/AbstractPageReloadOverlay.js b/react/features/overlay/components/AbstractPageReloadOverlay.js index f21acc2e4..759320e41 100644 --- a/react/features/overlay/components/AbstractPageReloadOverlay.js +++ b/react/features/overlay/components/AbstractPageReloadOverlay.js @@ -37,7 +37,7 @@ export default class AbstractPageReloadOverlay extends Component { * @type {string} */ reason: React.PropTypes.string - } + }; /** * Initializes a new AbstractPageReloadOverlay instance. diff --git a/react/features/overlay/components/FilmstripOnlyOverlayFrame.js b/react/features/overlay/components/FilmstripOnlyOverlayFrame.js index b145ffcee..160a5a45f 100644 --- a/react/features/overlay/components/FilmstripOnlyOverlayFrame.js +++ b/react/features/overlay/components/FilmstripOnlyOverlayFrame.js @@ -51,7 +51,7 @@ class FilmstripOnlyOverlayFrame extends Component { * @type {boolean} */ isLightOverlay: React.PropTypes.bool - } + }; /** * Renders content related to the icon. diff --git a/react/features/overlay/components/OverlayContainer.js b/react/features/overlay/components/OverlayContainer.js index c89f3f792..da9ccaab3 100644 --- a/react/features/overlay/components/OverlayContainer.js +++ b/react/features/overlay/components/OverlayContainer.js @@ -97,7 +97,7 @@ class OverlayContainer extends Component { * @type {string} */ _suspendDetected: React.PropTypes.bool - } + }; /** * Initializes a new ReloadTimer instance. diff --git a/react/features/overlay/components/OverlayFrame.js b/react/features/overlay/components/OverlayFrame.js index fc019e9e8..fcb48fabb 100644 --- a/react/features/overlay/components/OverlayFrame.js +++ b/react/features/overlay/components/OverlayFrame.js @@ -24,7 +24,7 @@ export default class OverlayFrame extends Component { * @type {boolean} */ isLightOverlay: React.PropTypes.bool - } + }; /** * Initializes a new AbstractOverlay instance. diff --git a/react/features/overlay/components/PageReloadFilmstripOnlyOverlay.js b/react/features/overlay/components/PageReloadFilmstripOnlyOverlay.js index a36141678..20046074c 100644 --- a/react/features/overlay/components/PageReloadFilmstripOnlyOverlay.js +++ b/react/features/overlay/components/PageReloadFilmstripOnlyOverlay.js @@ -26,7 +26,7 @@ class PageReloadFilmstripOnlyOverlay extends AbstractPageReloadOverlay { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/PageReloadOverlay.js b/react/features/overlay/components/PageReloadOverlay.js index bb971d42a..f41f57561 100644 --- a/react/features/overlay/components/PageReloadOverlay.js +++ b/react/features/overlay/components/PageReloadOverlay.js @@ -26,7 +26,7 @@ class PageReloadOverlay extends AbstractPageReloadOverlay { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/ReloadButton.js b/react/features/overlay/components/ReloadButton.js index d2cb7ed47..095876f07 100644 --- a/react/features/overlay/components/ReloadButton.js +++ b/react/features/overlay/components/ReloadButton.js @@ -29,7 +29,7 @@ class ReloadButton extends Component { * @type {string} */ textKey: React.PropTypes.string.isRequired - } + }; /** * Renders the button for relaod the page if necessary. diff --git a/react/features/overlay/components/ReloadTimer.js b/react/features/overlay/components/ReloadTimer.js index 1644d29da..8b9240883 100644 --- a/react/features/overlay/components/ReloadTimer.js +++ b/react/features/overlay/components/ReloadTimer.js @@ -63,7 +63,7 @@ class ReloadTimer extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Initializes a new ReloadTimer instance. diff --git a/react/features/overlay/components/SuspendedFilmstripOnlyOverlay.js b/react/features/overlay/components/SuspendedFilmstripOnlyOverlay.js index b63a03e76..c5d1ccb31 100644 --- a/react/features/overlay/components/SuspendedFilmstripOnlyOverlay.js +++ b/react/features/overlay/components/SuspendedFilmstripOnlyOverlay.js @@ -23,7 +23,7 @@ class SuspendedFilmstripOnlyOverlay extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/SuspendedOverlay.js b/react/features/overlay/components/SuspendedOverlay.js index 3535b57e8..8cc53b8d6 100644 --- a/react/features/overlay/components/SuspendedOverlay.js +++ b/react/features/overlay/components/SuspendedOverlay.js @@ -23,7 +23,7 @@ class SuspendedOverlay extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/UserMediaPermissionsFilmstripOnlyOverlay.js b/react/features/overlay/components/UserMediaPermissionsFilmstripOnlyOverlay.js index 7f3399704..e78db87c2 100644 --- a/react/features/overlay/components/UserMediaPermissionsFilmstripOnlyOverlay.js +++ b/react/features/overlay/components/UserMediaPermissionsFilmstripOnlyOverlay.js @@ -31,7 +31,7 @@ class UserMediaPermissionsFilmstripOnlyOverlay extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/overlay/components/UserMediaPermissionsOverlay.js b/react/features/overlay/components/UserMediaPermissionsOverlay.js index a6fd8fcec..062741929 100644 --- a/react/features/overlay/components/UserMediaPermissionsOverlay.js +++ b/react/features/overlay/components/UserMediaPermissionsOverlay.js @@ -33,7 +33,7 @@ class UserMediaPermissionsOverlay extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Initializes a new SuspendedOverlay instance. diff --git a/react/features/remote-control/components/RemoteControlAuthorizationDialog.js b/react/features/remote-control/components/RemoteControlAuthorizationDialog.js index f5f4da767..add703130 100644 --- a/react/features/remote-control/components/RemoteControlAuthorizationDialog.js +++ b/react/features/remote-control/components/RemoteControlAuthorizationDialog.js @@ -45,7 +45,7 @@ class RemoteControlAuthorizationDialog extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new RemoteControlAuthorizationDialog instance. diff --git a/react/features/room-lock/components/PasswordRequiredPrompt.native.js b/react/features/room-lock/components/PasswordRequiredPrompt.native.js index e16138d51..14d952fff 100644 --- a/react/features/room-lock/components/PasswordRequiredPrompt.native.js +++ b/react/features/room-lock/components/PasswordRequiredPrompt.native.js @@ -22,7 +22,7 @@ class PasswordRequiredPrompt extends Component { */ conference: React.PropTypes.object, dispatch: React.PropTypes.func - } + }; /** * Initializes a new PasswordRequiredPrompt instance. diff --git a/react/features/room-lock/components/PasswordRequiredPrompt.web.js b/react/features/room-lock/components/PasswordRequiredPrompt.web.js index 11d98076c..42fbc0f05 100644 --- a/react/features/room-lock/components/PasswordRequiredPrompt.web.js +++ b/react/features/room-lock/components/PasswordRequiredPrompt.web.js @@ -29,7 +29,7 @@ class PasswordRequiredPrompt extends Component { conference: React.PropTypes.object, dispatch: React.PropTypes.func, t: React.PropTypes.func - } + }; /** * Initializes a new PasswordRequiredPrompt instance. diff --git a/react/features/room-lock/components/RoomLockPrompt.native.js b/react/features/room-lock/components/RoomLockPrompt.native.js index c70f39f4f..81795fc34 100644 --- a/react/features/room-lock/components/RoomLockPrompt.native.js +++ b/react/features/room-lock/components/RoomLockPrompt.native.js @@ -22,7 +22,7 @@ class RoomLockPrompt extends Component { */ conference: React.PropTypes.object, dispatch: React.PropTypes.func - } + }; /** * Initializes a new RoomLockPrompt instance. diff --git a/react/features/speaker-stats/components/SpeakerStats.js b/react/features/speaker-stats/components/SpeakerStats.js index c9ce02719..414347d8d 100644 --- a/react/features/speaker-stats/components/SpeakerStats.js +++ b/react/features/speaker-stats/components/SpeakerStats.js @@ -28,7 +28,7 @@ class SpeakerStats extends Component { * The function to translate human-readable text. */ t: React.PropTypes.func - } + }; /** * Initializes a new SpeakerStats instance. diff --git a/react/features/speaker-stats/components/SpeakerStatsItem.js b/react/features/speaker-stats/components/SpeakerStatsItem.js index e8c03f021..d10cfd5ae 100644 --- a/react/features/speaker-stats/components/SpeakerStatsItem.js +++ b/react/features/speaker-stats/components/SpeakerStatsItem.js @@ -33,7 +33,7 @@ class SpeakerStatsItem extends Component { * True if the participant is currently the dominant speaker. */ isDominantSpeaker: React.PropTypes.bool - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/speaker-stats/components/SpeakerStatsLabels.js b/react/features/speaker-stats/components/SpeakerStatsLabels.js index 464c829cb..6f90a3573 100644 --- a/react/features/speaker-stats/components/SpeakerStatsLabels.js +++ b/react/features/speaker-stats/components/SpeakerStatsLabels.js @@ -18,7 +18,7 @@ class SpeakerStatsLabels extends Component { * The function to translate human-readable text. */ t: React.PropTypes.func - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/speaker-stats/components/TimeElapsed.js b/react/features/speaker-stats/components/TimeElapsed.js index 00755a3e3..63249966d 100644 --- a/react/features/speaker-stats/components/TimeElapsed.js +++ b/react/features/speaker-stats/components/TimeElapsed.js @@ -25,7 +25,7 @@ class TimeElapsed extends Component { * The milliseconds to be converted into a human-readable format. */ time: React.PropTypes.number - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/toolbox/components/AbstractToolbarButton.js b/react/features/toolbox/components/AbstractToolbarButton.js index 75c50bf13..95ad5ef8d 100644 --- a/react/features/toolbox/components/AbstractToolbarButton.js +++ b/react/features/toolbox/components/AbstractToolbarButton.js @@ -40,7 +40,7 @@ export default class AbstractToolbarButton extends Component { * The color underlaying the button. */ underlayColor: React.PropTypes.any - } + }; /** * Implements React's {@link Component#render()}. diff --git a/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js b/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js index 8272cc555..b6e7994da 100644 --- a/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js +++ b/react/features/unsupported-browser/components/UnsupportedDesktopBrowser.js @@ -35,7 +35,7 @@ class UnsupportedDesktopBrowser extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Renders the component. diff --git a/react/features/unsupported-browser/components/UnsupportedMobileBrowser.js b/react/features/unsupported-browser/components/UnsupportedMobileBrowser.js index 0ea047446..d93a60550 100644 --- a/react/features/unsupported-browser/components/UnsupportedMobileBrowser.js +++ b/react/features/unsupported-browser/components/UnsupportedMobileBrowser.js @@ -66,7 +66,7 @@ class UnsupportedMobileBrowser extends Component { * @type {Function} */ t: React.PropTypes.func - } + }; /** * Initializes the text and URL of the `Start a conference` / `Join the diff --git a/react/features/video-status-label/components/VideoStatusLabel.js b/react/features/video-status-label/components/VideoStatusLabel.js index b0c5d4b65..2bed11bf8 100644 --- a/react/features/video-status-label/components/VideoStatusLabel.js +++ b/react/features/video-status-label/components/VideoStatusLabel.js @@ -54,7 +54,7 @@ export class VideoStatusLabel extends Component { * Invoked to obtain translated strings. */ t: React.PropTypes.func - } + }; /** * Initializes a new {@code VideoStatusLabel} instance. diff --git a/react/features/welcome/components/AbstractWelcomePage.js b/react/features/welcome/components/AbstractWelcomePage.js index 28faba7bc..78209ca7c 100644 --- a/react/features/welcome/components/AbstractWelcomePage.js +++ b/react/features/welcome/components/AbstractWelcomePage.js @@ -22,7 +22,7 @@ export class AbstractWelcomePage extends Component { _localVideoTrack: React.PropTypes.object, _room: React.PropTypes.string, dispatch: React.PropTypes.func - } + }; /** * Initializes a new AbstractWelcomePage instance, including the initial