Object

io.scalajs.dom.html.browser

window

Related Doc: package browser

Permalink

object window extends Window

Annotations
@native() @JSName( "window" )
Linear Supertypes
Window, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. window
  2. Window
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def Components: Object

    Permalink

    The entry point to many XPCOM features.

    The entry point to many XPCOM features. Some properties, e.g. classes, are only available to sufficiently privileged code. Web code should not use this property.

    Definition Classes
    Window
  5. var MozWebSocket: UndefOr[WebSocket]

    Permalink

    TBD

    TBD

    Definition Classes
    Window
  6. def URL: Window.URL

    Permalink

    returns an object that provides static methods used for creating and managing object URLs.

    returns an object that provides static methods used for creating and managing object URLs. It can also be called as a constructor to construct URL objects.

    Definition Classes
    Window
  7. var WebSocket: UndefOr[WebSocket]

    Permalink

    TODO

    TODO

    Definition Classes
    Window
  8. def _content: Object

    Permalink
    Definition Classes
    Window
  9. def alert(message: |[String, Any] = js.native): Unit

    Permalink

    Displays an alert box with a message and an OK button

    Displays an alert box with a message and an OK button

    message

    Optional. Specifies the text to display in the alert box, or an object converted into a string and displayed

    Definition Classes
    Window
  10. def applicationCache: OfflineResourceList

    Permalink

    Read-only: An OfflineResourceList object providing access to the offline resources for the window.

    Read-only: An OfflineResourceList object providing access to the offline resources for the window.

    Definition Classes
    Window
  11. def apply(index: Int): Frame

    Permalink

    Returns a reference to the window object in the frames.

    Returns a reference to the window object in the frames. See Window.frames for more details.

    index

    the window index

    returns

    the window instance at the given index

    Definition Classes
    Window
    Annotations
    @JSBracketAccess()
  12. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  13. def atob(encodedStr: String): String

    Permalink

    Decodes a base-64 encoded string

    Decodes a base-64 encoded string

    encodedStr

    Required. The string which has been encoded by the btoa() method

    Definition Classes
    Window
  14. def blur(): Unit

    Permalink

    Removes focus from the current window

    Removes focus from the current window

    Definition Classes
    Window
  15. def btoa(str: String): String

    Permalink

    Encodes a string in base-64

    Encodes a string in base-64

    str

    Required. The string to be encoded

    returns

    A String, representing the base-64 encoded string

    Definition Classes
    Window
  16. def caches: CacheStorage

    Permalink

    Read-only: Returns the CacheStorage object associated with the current origin.

    Read-only: Returns the CacheStorage object associated with the current origin. This object enables service worker functionality such as storing assets for offline use, and generating custom responses to requests.

    Definition Classes
    Window
  17. def clearInterval(interval: Interval): Unit

    Permalink

    Clears a timer set with setInterval()

    Clears a timer set with setInterval()

    interval

    Required. The ID of the timer returned by the setInterval() method

    Definition Classes
    Window
  18. def clearTimeout(timeout: Timeout): Unit

    Permalink

    Clears a timer set with setTimeout()

    Clears a timer set with setTimeout()

    timeout

    Required. The ID value of the timer returned by the setTimeout() method

    Definition Classes
    Window
  19. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. def close(): Unit

    Permalink

    Closes the current window

    Closes the current window

    Definition Classes
    Window
  21. def closed: Boolean

    Permalink

    Read-only: This property indicates whether the current window is closed or not.

    Read-only: This property indicates whether the current window is closed or not.

    Definition Classes
    Window
  22. def confirm(message: |[String, Any] = js.native): Unit

    Permalink

    Displays a dialog box with a message and an OK and a Cancel button

    Displays a dialog box with a message and an OK and a Cancel button

    message

    Optional. Specifies the text to display in the confirm box

    Definition Classes
    Window
  23. def console: Console

    Permalink

    Read-only: Returns a reference to the console object which provides access to the browser's debugging console.

    Read-only: Returns a reference to the console object which provides access to the browser's debugging console.

    Definition Classes
    Window
  24. def content: Object

    Permalink

    Read-only: Returns a reference to the content element in the current window.

    Read-only: Returns a reference to the content element in the current window. The obsolete variant with underscore is no longer available from Web content.

    Definition Classes
    Window
  25. def controllers: XULControllers

    Permalink

    Read-only: Returns the XUL controller objects for the current chrome window.

    Read-only: Returns the XUL controller objects for the current chrome window.

    Definition Classes
    Window
  26. def crypto: Object

    Permalink

    Read-only: Returns the browser crypto object.

    Read-only: Returns the browser crypto object.

    Definition Classes
    Window
  27. def defaultStatus: String

    Permalink

    Gets/sets the status bar text for the given window (Obsolete since Gecko 23).

    Gets/sets the status bar text for the given window (Obsolete since Gecko 23).

    Definition Classes
    Window
  28. def devicePixelRatio: Double

    Permalink

    Read-only: Returns the ratio between physical pixels and device independent pixels in the current display.

    Read-only: Returns the ratio between physical pixels and device independent pixels in the current display.

    Definition Classes
    Window
  29. def dialogArguments: Object

    Permalink

    Read-only: Gets the arguments passed to the window (if it's a dialog box) at the time window.showModalDialog() was called.

    Read-only: Gets the arguments passed to the window (if it's a dialog box) at the time window.showModalDialog() was called. This is an nsIArray.

    Definition Classes
    Window
  30. def directories: Object

    Permalink

    Synonym of window.personalbar

    Synonym of window.personalbar

    Definition Classes
    Window
  31. def document: Document

    Permalink

    Read-only: Returns a reference to the document that the window contains.

    Read-only: Returns a reference to the document that the window contains.

    Definition Classes
    Window
  32. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  33. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  34. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  35. def focus(): Unit

    Permalink

    Sets focus to the current window

    Sets focus to the current window

    Definition Classes
    Window
  36. def frameElement: Element

    Permalink

    Read-only: Returns the element in which the window is embedded, or null if the window is not embedded.

    Read-only: Returns the element in which the window is embedded, or null if the window is not embedded.

    Definition Classes
    Window
  37. def frames: Array[Frame]

    Permalink

    Read-only: Returns an array of the subframes in the current window.

    Read-only: Returns an array of the subframes in the current window.

    Definition Classes
    Window
  38. def fullScreen: Boolean

    Permalink

    This property indicates whether the window is displayed in full screen or not.

    This property indicates whether the window is displayed in full screen or not.

    Definition Classes
    Window
  39. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  40. def getComputedStyle(element: Element, pseudoElement: Element = js.native): CSSStyleDeclaration

    Permalink

    Gets the current computed CSS styles applied to an element

    Gets the current computed CSS styles applied to an element

    element

    Required. The element to get the computed style for

    pseudoElement

    Optional. A pseudo-element to get

    returns

    A CSSStyleDeclaration object containing CSS declaration block of the element.

    Definition Classes
    Window
  41. def getSelection(): Selection

    Permalink

    Returns a Selection object representing the range of text selected by the user

    Returns a Selection object representing the range of text selected by the user

    Definition Classes
    Window
  42. def globalStorage: LocalStorage

    Permalink

    Unsupported since Gecko 13 (Firefox 13).

    Unsupported since Gecko 13 (Firefox 13). Use Window.localStorage instead. Was: Multiple storage objects that are used for storing data across multiple pages (Obsolete since Gecko 13).

    Definition Classes
    Window
  43. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  44. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  45. def history: History

    Permalink

    Read-only: Returns a reference to the history object.

    Read-only: Returns a reference to the history object.

    Definition Classes
    Window
  46. def innerHeight: Int

    Permalink

    Gets the height of the content area of the browser window including, if rendered, the horizontal scrollbar.

    Gets the height of the content area of the browser window including, if rendered, the horizontal scrollbar.

    Definition Classes
    Window
  47. def innerWidth: Int

    Permalink

    Gets the width of the content area of the browser window including, if rendered, the vertical scrollbar.

    Gets the width of the content area of the browser window including, if rendered, the vertical scrollbar.

    Definition Classes
    Window
  48. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  49. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  50. def isSecureContext: Boolean

    Permalink

    Read-only: Indicates whether a context is capable of using features that require secure contexts.

    Read-only: Indicates whether a context is capable of using features that require secure contexts.

    Definition Classes
    Window
  51. def length: Int

    Permalink

    Read-only: Returns the number of frames in the window.

    Read-only: Returns the number of frames in the window. See also window.frames.

    Definition Classes
    Window
  52. def localStorage: LocalStorage

    Permalink

    Read-only: Returns a reference to the local storage object used to store data that may only be accessed by the origin that created it.

    Read-only: Returns a reference to the local storage object used to store data that may only be accessed by the origin that created it.

    Definition Classes
    Window
  53. def location: Location

    Permalink

    Read-only: Gets/sets the location, or current URL, of the window object.

    Read-only: Gets/sets the location, or current URL, of the window object.

    Definition Classes
    Window
  54. def locationbar: Any

    Permalink

    Read-only: Returns the locationbar object, whose visibility can be toggled in the window.

    Read-only: Returns the locationbar object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  55. def matchMedia(mediaQueryString: String): MediaQueryList

    Permalink

    Returns a MediaQueryList object representing the specified CSS media query string

    Returns a MediaQueryList object representing the specified CSS media query string

    Definition Classes
    Window
  56. def menubar: Menubar

    Permalink

    Read-only: Returns the menubar object, whose visibility can be toggled in the window.

    Read-only: Returns the menubar object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  57. def messageManager: Any

    Permalink

    Returns the message manager object for this window.

    Returns the message manager object for this window.

    Definition Classes
    Window
  58. def moveBy(deltaX: Int, deltaY: Int): Unit

    Permalink

    Moves a window relative to its current position

    Moves a window relative to its current position

    Definition Classes
    Window
  59. def moveTo(x: Int, y: Int): Unit

    Permalink

    Moves a window to the specified position

    Moves a window to the specified position

    Definition Classes
    Window
  60. def mozAnimationStartTime: Int

    Permalink

    Read-only: The time in milliseconds since epoch at which the current animation cycle began.

    Read-only: The time in milliseconds since epoch at which the current animation cycle began.

    Definition Classes
    Window
  61. def mozInnerScreenX: Int

    Permalink

    Read-only: Returns the horizontal (X) coordinate of the top-left corner of the window's viewport, in screen coordinates.

    Read-only: Returns the horizontal (X) coordinate of the top-left corner of the window's viewport, in screen coordinates. This value is reported in CSS pixels. See mozScreenPixelsPerCSSPixel in nsIDOMWindowUtils for a conversion factor to adapt to screen pixels if needed.

    Definition Classes
    Window
  62. def mozInnerScreenY: Int

    Permalink

    Read-only: Returns the vertical (Y) coordinate of the top-left corner of the window's viewport, in screen coordinates.

    Read-only: Returns the vertical (Y) coordinate of the top-left corner of the window's viewport, in screen coordinates. This value is reported in CSS pixels. See mozScreenPixelsPerCSSPixel for a conversion factor to adapt to screen pixels if needed.

    Definition Classes
    Window
  63. def mozPaintCount: Int

    Permalink

    Read-only: Returns the number of times the current document has been rendered to the screen in this window.

    Read-only: Returns the number of times the current document has been rendered to the screen in this window. This can be used to compute rendering performance.

    Definition Classes
    Window
  64. def name: String

    Permalink

    Gets/sets the name of the window.

    Gets/sets the name of the window.

    Definition Classes
    Window
  65. def navigator: Navigator

    Permalink

    Read-only: Returns a reference to the navigator object.

    Read-only: Returns a reference to the navigator object.

    Definition Classes
    Window
  66. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  67. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  68. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  69. def open(url: String, windowName: String, windowFeatures: Any = js.native): browser.window.this.type

    Permalink

    Opens a new browser window

    Opens a new browser window

    Definition Classes
    Window
  70. def openDialog(url: String, name: String, features: String, args: Any*): browser.window.this.type

    Permalink

    Opens a new dialog window.

    Opens a new dialog window.

    Definition Classes
    Window
  71. def opener: Any

    Permalink

    Returns a reference to the window that opened this current window.

    Returns a reference to the window that opened this current window.

    Definition Classes
    Window
  72. def orientation: Any

    Permalink

    Read-only: Returns the orientation in degrees (in 90 degree increments) of the viewport relative to the device's natural orientation.

    Read-only: Returns the orientation in degrees (in 90 degree increments) of the viewport relative to the device's natural orientation.

    Definition Classes
    Window
  73. def outerHeight: Int

    Permalink

    Read-only: Gets the height of the outside of the browser window.

    Read-only: Gets the height of the outside of the browser window.

    Definition Classes
    Window
  74. def outerWidth: Int

    Permalink

    Read-only: Gets the width of the outside of the browser window.

    Read-only: Gets the width of the outside of the browser window.

    Definition Classes
    Window
  75. def pageXOffset: Int

    Permalink

    Read-only: An alias for window.scrollX.

    Read-only: An alias for window.scrollX.

    Definition Classes
    Window
  76. def pageYOffset: Int

    Permalink

    Read-only: An alias for window.scrollY

    Read-only: An alias for window.scrollY

    Definition Classes
    Window
  77. def parent: Frame

    Permalink

    Read-only: Returns a reference to the parent of the current window or subframe.

    Read-only: Returns a reference to the parent of the current window or subframe.

    Definition Classes
    Window
  78. def performance: Performance

    Permalink

    Read-only: Provides a hosting area for performance related attributes.

    Read-only: Provides a hosting area for performance related attributes.

    Definition Classes
    Window
  79. def personalbar: String

    Permalink

    Read-only: Returns the personalbar object, whose visibility can be toggled in the window.

    Read-only: Returns the personalbar object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  80. def pkcs11: String

    Permalink

    Formerly provided access to install and remove PKCS11 modules (Obsolete since Gecko 29)

    Formerly provided access to install and remove PKCS11 modules (Obsolete since Gecko 29)

    Definition Classes
    Window
  81. def postMessage(message: String, targetOrigin: String, transfer: Boolean = js.native): Unit

    Permalink

    The Window.postMessage() method safely enables cross-origin communication.

    The Window.postMessage() method safely enables cross-origin communication. Normally, scripts on different pages are allowed to access each other if and only if the pages that executed them are at locations with the same protocol (usually both https), port number (443 being the default for https), and host (modulo Document.domain being set by both pages to the same value). window.postMessage() provides a controlled mechanism to circumvent this restriction in a way which is secure when properly used.

    message

    Data to be sent to the other window. The data is serialized using the structured clone algorithm. This means you can pass a broad variety of data objects safely to the destination window without having to serialize them yourself.

    targetOrigin

    Specifies what the origin of otherWindow must be for the event to be dispatched, either as the literal string "*" (indicating no preference) or as a URI. If at the time the event is scheduled to be dispatched the scheme, hostname, or port of otherWindow's document does not match that provided in targetOrigin, the event will not be dispatched; only if all three match will the event be dispatched. This mechanism provides control over where messages are sent.

    transfer

    Optional: Is a sequence of Transferable objects that are transferred with the message. The ownership of these objects is given to the destination side and they are no longer usable on the sending side.

    Definition Classes
    Window
  82. def print(): Unit

    Permalink

    Prints the content of the current window

    Prints the content of the current window

    Definition Classes
    Window
  83. def prompt(message: String, default: String = js.native): String

    Permalink

    The Window.prompt() displays a dialog with an optional message prompting the user to input some text.

    The Window.prompt() displays a dialog with an optional message prompting the user to input some text.

    message

    is a string of text to display to the user. This parameter is optional and can be omitted if there is nothing to show in the prompt window.

    default

    is a string containing the default value displayed in the text input field. It is an optional parameter. Note that in Internet Explorer 7 and 8, if you do not provide this parameter, the string "undefined" is the default value.

    returns

    a string containing the text entered by the user, or null.

    Definition Classes
    Window
  84. def prompt(): String

    Permalink

    The Window.prompt() displays a dialog with an optional message prompting the user to input some text.

    The Window.prompt() displays a dialog with an optional message prompting the user to input some text.

    returns

    a string containing the text entered by the user, or null.

    Definition Classes
    Window
  85. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  86. def resizeBy(xDelta: Int, yDelta: Int): Unit

    Permalink

    Resizes the window by the specified pixels

    Resizes the window by the specified pixels

    Definition Classes
    Window
  87. def resizeTo(aWidth: Int, aHeight: Int): Unit

    Permalink

    Resizes the window to the specified width and height

    Resizes the window to the specified width and height

    Definition Classes
    Window
  88. def returnValue: Any

    Permalink

    The return value to be returned to the function that called window.showModalDialog() to display the window as a modal dialog.

    The return value to be returned to the function that called window.showModalDialog() to display the window as a modal dialog.

    Definition Classes
    Window
  89. def screen: Any

    Permalink

    Read-only: Returns a reference to the screen object associated with the window.

    Read-only: Returns a reference to the screen object associated with the window.

    Definition Classes
    Window
  90. def screenX: Int

    Permalink

    Read-only: Returns the horizontal distance of the left border of the user's browser from the left side of the screen.

    Read-only: Returns the horizontal distance of the left border of the user's browser from the left side of the screen.

    Definition Classes
    Window
  91. def screenY: Int

    Permalink

    Read-only: Returns the vertical distance of the top border of the user's browser from the top side of the screen.

    Read-only: Returns the vertical distance of the top border of the user's browser from the top side of the screen.

    Definition Classes
    Window
  92. def scroll(x_coord: Int, y_coord: Int): Unit

    Permalink

    Deprecated.

    Deprecated. This method has been replaced by the scrollTo() method.

    x_coord

    is the pixel along the horizontal axis of the document that you want displayed in the upper left.

    y_coord

    is the pixel along the vertical axis of the document that you want displayed in the upper left.

    Definition Classes
    Window
  93. def scrollBy(x: Int, y: Int): Unit

    Permalink

    Scrolls the document by the specified number of pixels

    Scrolls the document by the specified number of pixels

    x

    is the offset in pixels to scroll horizontally.

    y

    is the offset in pixels to scroll vertically.

    Definition Classes
    Window
  94. def scrollMaxX: Int

    Permalink

    Read-only: The maximum offset that the window can be scrolled to horizontally, that is the document width minus the viewport width.

    Read-only: The maximum offset that the window can be scrolled to horizontally, that is the document width minus the viewport width.

    Definition Classes
    Window
  95. def scrollMaxY: Int

    Permalink

    Read-only: The maximum offset that the window can be scrolled to vertically (i.e., the document height minus the viewport height).

    Read-only: The maximum offset that the window can be scrolled to vertically (i.e., the document height minus the viewport height).

    Definition Classes
    Window
  96. def scrollTo(x_coord: Int, y_coord: Int): Unit

    Permalink

    Scrolls the document to the specified coordinates

    Scrolls the document to the specified coordinates

    x_coord

    is the pixel along the horizontal axis of the document that you want displayed in the upper left.

    y_coord

    is the pixel along the vertical axis of the document that you want displayed in the upper left.

    Definition Classes
    Window
  97. def scrollX: Int

    Permalink

    Read-only: Returns the number of pixels that the document has already been scrolled horizontally.

    Read-only: Returns the number of pixels that the document has already been scrolled horizontally.

    Definition Classes
    Window
  98. def scrollY: Int

    Permalink

    Read only: Returns the number of pixels that the document has already been scrolled vertically.

    Read only: Returns the number of pixels that the document has already been scrolled vertically.

    Definition Classes
    Window
  99. def scrollbars: Any

    Permalink

    Read-only: Returns the scrollbars object, whose visibility can be toggled in the window.

    Read-only: Returns the scrollbars object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  100. def self: browser.window.this.type

    Permalink

    Read-only: Returns an object reference to the window object itself.

    Read-only: Returns an object reference to the window object itself.

    Definition Classes
    Window
  101. def sessionStorage: SessionStorage

    Permalink

    Read-only: Returns a reference to the session storage object used to store data that may only be accessed by the origin that created it.

    Read-only: Returns a reference to the session storage object used to store data that may only be accessed by the origin that created it.

    Definition Classes
    Window
  102. def setInterval(func: |[Function, String], delay: Int, params: Any*): Interval

    Permalink

    Calls a function or evaluates an expression at specified intervals (in milliseconds)

    Calls a function or evaluates an expression at specified intervals (in milliseconds)

    Definition Classes
    Window
  103. def setTimeout(func: |[Function, String], delay: Int, params: Any*): Timeout

    Permalink

    Calls a function or evaluates an expression after a specified number of milliseconds

    Calls a function or evaluates an expression after a specified number of milliseconds

    Definition Classes
    Window
  104. def sidebar: browser.window.this.type

    Permalink

    Read-only: Returns a reference to the window object of the sidebar.

    Read-only: Returns a reference to the window object of the sidebar.

    Definition Classes
    Window
  105. def speechSynthesis: SpeechSynthesis

    Permalink

    Read-only: Returns a SpeechSynthesis object, which is the entry point into using Web Speech API speech synthesis functionality.

    Read-only: Returns a SpeechSynthesis object, which is the entry point into using Web Speech API speech synthesis functionality.

    Definition Classes
    Window
  106. var status: String

    Permalink

    Gets/sets the text in the statusbar at the bottom of the browser.

    Gets/sets the text in the statusbar at the bottom of the browser.

    Definition Classes
    Window
  107. def statusbar: Any

    Permalink

    Read-only: Returns the statusbar object, whose visibility can be toggled in the window.

    Read-only: Returns the statusbar object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  108. def stop(): Unit

    Permalink

    Stops the window from loading

    Stops the window from loading

    Definition Classes
    Window
  109. def storageStorage: Any

    Permalink

    Returns a storage object for storing data within a single page session.

    Returns a storage object for storing data within a single page session.

    Definition Classes
    Window
  110. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  111. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  112. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  113. def toolbar: Any

    Permalink

    Read-only: Returns the toolbar object, whose visibility can be toggled in the window.

    Read-only: Returns the toolbar object, whose visibility can be toggled in the window.

    Definition Classes
    Window
  114. def top: Any

    Permalink

    Read-only: Returns a reference to the topmost window in the window hierarchy.

    Read-only: Returns a reference to the topmost window in the window hierarchy. This property is read only.

    Definition Classes
    Window
  115. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  116. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  117. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  118. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  119. def window: browser.window.this.type

    Permalink

    Read-only: Returns a reference to the current window.

    Read-only: Returns a reference to the current window.

    Definition Classes
    Window

Inherited from Window

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped