click_event static method

void click_event(
  1. String tag,
  2. String id,
  3. String attributes
)

click ──╮─→ $tag on ╰─→ $id with ╰─→ $attributes

Implementation

static void click_event(String tag, String id, String attributes) {
  "click".write(inYellow);
  " ──╮─→".write(inRed);
  " $tag".writeLine(inPurple);
  "on".write(inYellow);
  " ╰─→".write(inRed);
  " $id".writeLine(inWhite);
  "with".write(inYellow);
  " ╰─→".write(inRed);
  " $attributes".writeLine(inWhite);
}