diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2020-05-18 22:25:31 -0700 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2020-05-18 22:25:31 -0700 |
commit | 039892dd122f7958662e1cfe27b0e3296c2780b9 (patch) | |
tree | 51d5e15fe1ef16bcff04b77746d33c5680ed5cc6 /src | |
parent | d2d01e3c827e53977bac8f9ceeef69eda31cfa4f (diff) |
commenting cleanup
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/nodes/VideoBox.tsx | 2 | ||||
-rw-r--r-- | src/server/ApiManagers/UploadManager.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/VideoBox.tsx b/src/client/views/nodes/VideoBox.tsx index a3abaedfa..6b1e6ae18 100644 --- a/src/client/views/nodes/VideoBox.tsx +++ b/src/client/views/nodes/VideoBox.tsx @@ -111,7 +111,7 @@ export class VideoBox extends ViewBoxAnnotatableComponent<FieldViewProps, VideoD this._videoRef && ctx.drawImage(this._videoRef, 0, 0, canvas.width, canvas.height); } - if (!this._videoRef) { // can't find a way to take snapshots of videos + if (!this._videoRef) { const b = Docs.Create.LabelDocument({ x: (this.layoutDoc.x || 0) + width, y: (this.layoutDoc.y || 1), _width: 150, _height: 50, title: (this.layoutDoc.currentTimecode || 0).toString(), diff --git a/src/server/ApiManagers/UploadManager.ts b/src/server/ApiManagers/UploadManager.ts index 1ab81803f..10d7e3a34 100644 --- a/src/server/ApiManagers/UploadManager.ts +++ b/src/server/ApiManagers/UploadManager.ts @@ -280,7 +280,7 @@ export default class UploadManager extends ApiManager { /** * On success, returns a buffer containing the bytes of a screenshot - * of the video specified by @param url at timecode @param t. + * of the video (optionally, at a timecode) specified by @param targetUrl. * * On failure, returns undefined. */ |