attachEditable method

void attachEditable(
  1. String selector
)

Attach jQuery selectors to Aloha to make them editable entities.

Implementation

void attachEditable(String selector) {
  if (!_ready) throw AlohaException(AlohaException.notReady);
  js.context.callMethod(r'$', [selector]).callMethod('aloha');
}