Liking cljdoc? Tell your friends :D

web.other.ProgressEvent

The ProgressEvent interface represents events measuring progress an underlying process, like an HTTP request (for an XMLHttpRequest, the loading of the underlying resource of an <img>, <audio>, <style> or <link>).

The ProgressEvent interface represents events measuring progress
an underlying process, like an HTTP request (for an XMLHttpRequest,
the loading of the underlying resource of an `<img>`, `<audio>`,
`<style>` or `<link>`).
raw docstring

constructorcljs

Constructor.

The ProgressEvent() constructor returns a newly created web.other.ProgressEvent, representing the current completion of a long process.

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/ProgressEvent

Constructor.

The ProgressEvent() constructor returns a newly created `web.other.ProgressEvent`, representing the current completion of a long process.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/ProgressEvent`
sourceraw docstring

init-progress-eventcljs

(init-progress-event this
                     type-arg
                     can-bubble-arg
                     cancelable-arg
                     length-computable
                     loaded
                     total)

Method.

The ProgressEvent.initProgressEvent() method Initializes an animation created using the deprecated Document.createEvent(\"ProgressEvent\")

Progress.initProgressEvent(typeArg, canBubbleArg, cancelableArg, lengthComputable, loaded, total);

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/initProgressEvent

Method.

The ProgressEvent.initProgressEvent() method Initializes an animation
created using the deprecated `Document.createEvent(\"ProgressEvent\")`

`Progress.initProgressEvent(typeArg, canBubbleArg, cancelableArg, lengthComputable, loaded, total);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/initProgressEvent`
sourceraw docstring

length-computablecljs

(length-computable this)

Property.

The ProgressEvent.lengthComputable read-only property is a js.Boolean indicating if the resource concerned by the web.other.ProgressEvent a length that can be calculated. If not, the ProgressEvent.total has no significant value.

flag = ProgressEvent.lengthComputable

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable

Property.

The ProgressEvent.lengthComputable read-only property is a `js.Boolean`
indicating if the resource concerned by the `web.other.ProgressEvent`
a length that can be calculated. If not, the `ProgressEvent.total`
has no significant value.

`flag = ProgressEvent.lengthComputable`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable`
sourceraw docstring

loadedcljs

(loaded this)

Property.

The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead.

value = ProgressEvent.loaded

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded

Property.

The ProgressEvent.loaded read-only property is an integer representing
amount of work already performed by the underlying process. The
of work done can be calculated with the property and ProgressEvent.total.
downloading a resource using HTTP, this only represent the part
the content itself, not headers and other overhead.

`value = ProgressEvent.loaded`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded`
sourceraw docstring

set-length-computable!cljs

(set-length-computable! this val)

Property.

The ProgressEvent.lengthComputable read-only property is a js.Boolean indicating if the resource concerned by the web.other.ProgressEvent a length that can be calculated. If not, the ProgressEvent.total has no significant value.

flag = ProgressEvent.lengthComputable

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable

Property.

The ProgressEvent.lengthComputable read-only property is a `js.Boolean`
indicating if the resource concerned by the `web.other.ProgressEvent`
a length that can be calculated. If not, the `ProgressEvent.total`
has no significant value.

`flag = ProgressEvent.lengthComputable`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/lengthComputable`
sourceraw docstring

set-loaded!cljs

(set-loaded! this val)

Property.

The ProgressEvent.loaded read-only property is an integer representing amount of work already performed by the underlying process. The of work done can be calculated with the property and ProgressEvent.total. downloading a resource using HTTP, this only represent the part the content itself, not headers and other overhead.

value = ProgressEvent.loaded

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded

Property.

The ProgressEvent.loaded read-only property is an integer representing
amount of work already performed by the underlying process. The
of work done can be calculated with the property and ProgressEvent.total.
downloading a resource using HTTP, this only represent the part
the content itself, not headers and other overhead.

`value = ProgressEvent.loaded`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/loaded`
sourceraw docstring

set-total!cljs

(set-total! this val)

Property.

The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead.

value = ProgressEvent.total

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total

Property.

The ProgressEvent.total read-only property is an integer representing
total amount of work that the underlying process is in the progress
performing. When downloading a resource using HTTP, this only
the content itself, not headers and other overhead.

`value = ProgressEvent.total`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total`
sourceraw docstring

totalcljs

(total this)

Property.

The ProgressEvent.total read-only property is an integer representing total amount of work that the underlying process is in the progress performing. When downloading a resource using HTTP, this only the content itself, not headers and other overhead.

value = ProgressEvent.total

See also: https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total

Property.

The ProgressEvent.total read-only property is an integer representing
total amount of work that the underlying process is in the progress
performing. When downloading a resource using HTTP, this only
the content itself, not headers and other overhead.

`value = ProgressEvent.total`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/ProgressEvent/total`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close