diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-01 07:53:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-01 07:53:28 +0000 |
commit | a7f119e5e70b2b9d61c5dca351ec2e36c9b6d00e (patch) | |
tree | 8ab1a3fa764f05a1c45b6864d3bd19e2695dc354 /ext/js/core.js | |
parent | 8adf2a95c2b93625b168f2884f8fa0e59f7024ad (diff) | |
parent | 6a47eb02a76857a1ce2412babcc7969fd3b77bc4 (diff) |
Merge pull request #251 from themoeway/dependabot/npm_and_yarn/eslint-plugin-jsdoc-46.8.2
Bump eslint-plugin-jsdoc from 39.3.6 to 46.8.2
Diffstat (limited to 'ext/js/core.js')
-rw-r--r-- | ext/js/core.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/js/core.js b/ext/js/core.js index 5b064a36..1e749c7d 100644 --- a/ext/js/core.js +++ b/ext/js/core.js @@ -309,7 +309,7 @@ function promiseTimeout(delay, resolveValue) { * Creates a promise that will resolve after the next animation frame, using `requestAnimationFrame`. * @param {number} [timeout] A maximum duration (in milliseconds) to wait until the promise resolves. If null or omitted, no timeout is used. * @returns {Promise<{time: number, timeout: number}>} A promise that is resolved with `{time, timeout}`, where `time` is the timestamp from `requestAnimationFrame`, - * and `timeout` is a boolean indicating whether the cause was a timeout or not. + * and `timeout` is a boolean indicating whether the cause was a timeout or not. * @throws The promise throws an error if animation is not supported in this context, such as in a service worker. */ function promiseAnimationFrame(timeout=null) { @@ -609,7 +609,7 @@ class DynamicProperty extends EventDispatcher { * @param {*} value The override value to assign. * @param {number} [priority] The priority value to use, as a number. * @returns {string} A string token which can be passed to the clearOverride function - * to remove the override. + * to remove the override. */ setOverride(value, priority=0) { const overridesCount = this._overrides.length; |