You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011
  1. com_vaadin_tests_components_javascriptcomponent_JSComponentLoadingIndicator_JSComponent = function()
  2. {
  3. var connector = this;
  4. var e = this.getElement();
  5. e.innerText="click me to ping server";
  6. e.id="js";
  7. e.addEventListener("click", function() {
  8. connector.test();
  9. });
  10. }