Class: Dommy::CompositionEvent

Inherits:
Event
  • Object
show all
Defined in:
lib/dommy/event.rb

Overview

‘CompositionEvent` — IME composition events (compositionstart / compositionupdate / compositionend). `data` holds the composing text.

Instance Attribute Summary collapse

Attributes inherited from Event

#type

Instance Method Summary collapse

Methods inherited from Event

#__js_call__, #__js_set__, #__prepare_for_dispatch__, #__record_path__, #__set_current_target__, #bubbles?, #default_prevented?, #immediate_propagation_stopped?, #init_event, #propagation_stopped?

Constructor Details

#initialize(type, init = nil) ⇒ CompositionEvent

Returns a new instance of CompositionEvent.



716
717
718
719
# File 'lib/dommy/event.rb', line 716

def initialize(type, init = nil)
  super
  @data = (read_init(init, "data") || "").to_s
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data.



721
722
723
# File 'lib/dommy/event.rb', line 721

def data
  @data
end

Instance Method Details

#__js_get__(key) ⇒ Object



723
724
725
726
727
728
729
730
# File 'lib/dommy/event.rb', line 723

def __js_get__(key)
  case key
  when "data"
    @data
  else
    super
  end
end