Screenshot
API
There are the following attributes:
- email - sets the email adress for the feedback link
- subject - sets the subject of the email
Note: changing these attributes during runtime has no effect.
Usage with WebPack
package.json
"dependencies": {
"@ewc-lib/ewc-footer-links": "^1.0.0"
}
index.html
<!DOCTYPE html>
<html>
<head>
<style>
body{
font-family: 'Arial', sans-serif;
margin: 0;
}
</style>
</head>
<body>
<script src="bundle.js"></script>
<ewc-footer-links
email="some-email-address@somewhere.earth"
subject="This is the eMail's subject">
</ewc-footer-links>
</body>
</html>
index.js
import "@ewc-lib/ewc-footer-links"