Skip to content

Commit

Permalink
chore: fix lint in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeen committed Oct 14, 2024
1 parent f4070a7 commit 2c1fe19
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/app/components/docs/manual-position-control.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default class DocsCustomPositionControlComponent extends Component {
@tracked lastSelectedPosition;

@action
onChangePosition(position, event) {
onChangePosition(position /* event */) {
this.lastSelectedPosition = position;
}
}
6 changes: 1 addition & 5 deletions ember-stereo/src/helpers/sound-position-timestamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,10 @@ import { add } from 'date-fns';
@class {{sound-position-timestamp}}
@type {Helper}
*/

/**
@method compute
@param {Any} identifier url, urls, url objects, promise that resolves to a url
@param {Date} startsAt required if currentTime is not provided
@param {Float} position
@param {Date} currentTime
@param {Date} startsAt
@return {Date}
*/
export default class SoundPositionTimestamp extends StereoBaseIsHelper {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { setupStereoTest } from 'ember-stereo/test-support/stereo-setup';
import { render, settled } from '@ember/test-helpers';
import { render } from '@ember/test-helpers';
import { hbs } from 'ember-cli-htmlbars';
import { add } from 'date-fns';

Expand Down

0 comments on commit 2c1fe19

Please sign in to comment.