Draft
This page is not complete.
The ContentIndexEvent()
constructor
creates a new ContentIndexEvent
object whose type and other options are
configured as specified.
Syntax
var ContentIndexEvent = new ContentIndexEvent(type, ContentIndexEventInit);
Parameters
- type
- A
DOMString
indicating the event which occurred. ForContentIndexEvent
, this is alwaysdelete
. - eventInitDict Optional
- An options object containing any initialization data you want to populate the
ContentIndexEvent
object with. The options are:id
: The id of the indexed content you want theContentIndexEvent
to remove.
Return value
A ContentIndexEvent
object configured using the given inputs.
Examples
This examples constructs a new ContentIndexEvent
with the relevant id.
var removeData = {
id : 'unique-content-id'
}
var ciEvent = new ContentIndexEvent('contentdelete', removeData);
ciEvent.id; // should return 'unique-content-id'
Specifications
Specification | Status | Comment |
---|---|---|
Content Index API The definition of 'ContentIndexEvent' in that specification. |
Editor's Draft | Initial definition. |