From 4df259ad5530de1167e236e529f46ecd86c63273 Mon Sep 17 00:00:00 2001 From: Marian Sigler Date: Sat, 29 Sep 2012 18:06:33 +0200 Subject: move settings JavaScript code to own js file to not have to load it everytime --- static/script.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 static/script.js (limited to 'static') 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 = $('bearbeiten') + + 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.append(elem); + list.append(li); + } + + content.hide(); + }); + + } -- cgit v1.2.3-1-g7c22