All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalajs.dom.event.HashChangeEvent.scala Maven / Gradle / Ivy

There is a newer version: 0.4.2
Show newest version
package io.scalajs.dom.event

import io.scalajs.dom.Event

import scala.scalajs.js

/**
  * Hash Change Event Object
  * @author [email protected]
  */
@js.native
class HashChangeEvent extends Event {

  /**
    * Returns the URL of the document, after the hash has been changed
    */
  def newURL: String = js.native

  /**
    * Returns the URL of the document, before the hash was changed
    */
  def oldURL: String = js.native

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy