diff options
author | hellekin <hellekin@cepheide.org> | 2020-11-11 22:26:29 +0100 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-11-11 22:26:29 +0100 |
commit | 2d17bcf4d599f390bce4898a407aef1a4e7454dc (patch) | |
tree | 44f99de84c9d1baaf94fe4a79e7334b3eaf040c0 /app/javascript | |
parent | 067c8618fee3d4fad9095c1353d676e3bae4f651 (diff) | |
download | incommon-map-2d17bcf4d599f390bce4898a407aef1a4e7454dc.tar.gz |
Remove example controller
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/controllers/hello_controller.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/app/javascript/controllers/hello_controller.js b/app/javascript/controllers/hello_controller.js deleted file mode 100644 index 28fdb13..0000000 --- a/app/javascript/controllers/hello_controller.js +++ /dev/null @@ -1,18 +0,0 @@ -// Visit The Stimulus Handbook for more details -// https://stimulusjs.org/handbook/introduction -// -// This example controller works with specially annotated HTML like: -// -// <div data-controller="hello"> -// <h1 data-target="hello.output"></h1> -// </div> - -import { Controller } from "stimulus" - -export default class extends Controller { - static targets = [ "output" ] - - connect() { - this.outputTarget.textContent = 'Hello, Stimulus!' - } -} |