summaryrefslogtreecommitdiffstats
path: root/static/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/script.js')
-rw-r--r--static/script.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/static/script.js b/static/script.js
new file mode 100644
index 0000000..f154300
--- /dev/null
+++ b/static/script.js
@@ -0,0 +1,27 @@
+function settings_service_toggle() {
+
+ $('.service').each(function() {
+ var header = $(this).find('h3');
+ var list = $(this).find('ul');
+ var content = $(this).find('.form-service');
+ var elem = $('<a class="service-edit" href="">bearbeiten</a>')
+
+ elem.click(function() {
+ content.toggle();
+
+ return false;
+ });
+
+ console.log(list.find('a'))
+ if(list.find('a').length > 0) {
+ list.find('a').parent().prepend(elem);
+ } else {
+ var li = $('<li></li>');
+ li.append(elem);
+ list.append(li);
+ }
+
+ content.hide();
+ });
+
+ }