diff options
author | martin speleo <martin.speleo@gmail.com> | 2009-06-28 19:33:24 +0100 |
---|---|---|
committer | martin speleo <martin.speleo@gmail.com> | 2009-06-28 19:33:24 +0100 |
commit | b847bde6b78ea36e2dd749ddadad63c163a23c47 (patch) | |
tree | aafa1e7cc2e08ff88e7b7b46e0d49078021a62f2 /expo/views_other.py | |
parent | 06f7bfa97958fb1d17a9c15d27004fd04a0002ca (diff) | |
download | troggle-b847bde6b78ea36e2dd749ddadad63c163a23c47.tar.gz troggle-b847bde6b78ea36e2dd749ddadad63c163a23c47.tar.bz2 troggle-b847bde6b78ea36e2dd749ddadad63c163a23c47.zip |
[svn] Fixed small semantics issues stopping base.js working with IE.
Made toggle eyecandy persistent (using a cookie)
Made toggle eyecandy turn off footer menu images
Only load footer menu images if the eyecandy is being used.
Diffstat (limited to 'expo/views_other.py')
-rw-r--r-- | expo/views_other.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/expo/views_other.py b/expo/views_other.py index f56f8bc..790c779 100644 --- a/expo/views_other.py +++ b/expo/views_other.py @@ -149,4 +149,7 @@ def downloadQMs(request): def ajax_test(request):
post_text = request.POST['post_data']
return HttpResponse("{'response_text': '"+post_text+" recieved.'}",
- mimetype="application/json")
\ No newline at end of file + mimetype="application/json")
+
+def eyecandy(request):
+ return render_response(request,'eyecandy.html', {})
|