aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorMaZderMind2014-12-20 15:23:27 +0100
committerMaZderMind2014-12-20 15:23:27 +0100
commita51c188eb783b1f7b6cd0ba414252572babd8e53 (patch)
treebeb41c102e073e4519e0742adafbd95769018efa /assets
parentaddbb6b5ceb569e481358b843702ab77b3c4c7e2 (diff)
feedback form interaction
Diffstat (limited to 'assets')
-rw-r--r--assets/css/lustige-styles.css5
-rw-r--r--assets/css/src/lustige-styles.scss2
-rw-r--r--assets/js/lustiges-script.js9
3 files changed, 16 insertions, 0 deletions
diff --git a/assets/css/lustige-styles.css b/assets/css/lustige-styles.css
index e752c13..22e9e37 100644
--- a/assets/css/lustige-styles.css
+++ b/assets/css/lustige-styles.css
@@ -5467,6 +5467,11 @@ h1 + .news-item {
padding: 20px; }
.tab-content #feedback label {
color: white; }
+ .tab-content #feedback h3 {
+ display: none;
+ color: white; }
+ .tab-content #feedback iframe {
+ display: none; }
.tab-content #feedback .col {
padding: 0 30px; }
diff --git a/assets/css/src/lustige-styles.scss b/assets/css/src/lustige-styles.scss
index 2939d3c..634d5fe 100644
--- a/assets/css/src/lustige-styles.scss
+++ b/assets/css/src/lustige-styles.scss
@@ -238,6 +238,8 @@ h1 + .news-item {
padding: 20px;
label { color: white; }
+ h3 { display: none; color: white; }
+ iframe { display: none; }
.col {
padding: 0 30px;
diff --git a/assets/js/lustiges-script.js b/assets/js/lustiges-script.js
index 170a15d..59fd6ff 100644
--- a/assets/js/lustiges-script.js
+++ b/assets/js/lustiges-script.js
@@ -379,3 +379,12 @@ $(function() {
fetchProgram();
});
+
+
+// feedback form
+$(function() {
+ $('.feedback-form').on('submit', function() {
+ $('.feedback-form').hide();
+ $('.feedback-thankyou').show();
+ });
+});