From e2ae50362ed6ad823d5b6079b835a2abfec2ccbd Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 26 Oct 2018 19:21:58 +1300 Subject: [PATCH] Add missing JSDoc of Window.interstitialModeEnabled property --- interface/src/scripting/WindowScriptingInterface.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/interface/src/scripting/WindowScriptingInterface.h b/interface/src/scripting/WindowScriptingInterface.h index ef3dfcef4b..c5e558eb3a 100644 --- a/interface/src/scripting/WindowScriptingInterface.h +++ b/interface/src/scripting/WindowScriptingInterface.h @@ -41,6 +41,8 @@ * Read-only. * @property {number} y - The y display coordinate of the top left corner of the drawable area of the Interface window. * Read-only. + * @property {boolean} interstitialModeEnabled=true - true if the interstitial graphics are displayed when the + * domain is loading, otherwise false. */ class WindowScriptingInterface : public QObject, public Dependency { @@ -620,9 +622,10 @@ signals: void redirectErrorStateChanged(bool isInErrorState); /**jsdoc - * Triggered when interstitial mode changes. + * Triggered when the interstitial mode changes. * @function Window.interstitialModeChanged - * @param {bool} interstitialMode - The mode of the interstitial is changed to. + * @param {bool} interstitialMode - The new interstitial mode value. If true, the interstitial graphics are + * displayed when the domain is loading. * @returns {Signal} */ void interstitialModeChanged(bool interstitialMode);