diff gpp/comments/forms.py @ 127:2d299909e074

Adding markdown help to comments and forums. Still need to add it to a few other places that use the markItUp editor.
author Brian Neal <bgneal@gmail.com>
date Mon, 16 Nov 2009 01:00:28 +0000
parents f408971657b9
children b8474ffe76d9
line wrap: on
line diff
--- a/gpp/comments/forms.py	Sat Nov 14 20:30:31 2009 +0000
+++ b/gpp/comments/forms.py	Mon Nov 16 01:00:28 2009 +0000
@@ -66,7 +66,9 @@
 
     class Media:
         css = {
-            'all': settings.GPP_THIRD_PARTY_CSS['markitup'],
+            'all': (settings.GPP_THIRD_PARTY_CSS['markitup'] +
+                settings.GPP_THIRD_PARTY_CSS['jquery-ui']),
         }
-        js = settings.GPP_THIRD_PARTY_JS['markitup'] + \
-            ('js/comments.js', )
+        js = (settings.GPP_THIRD_PARTY_JS['markitup'] + 
+                settings.GPP_THIRD_PARTY_JS['jquery-ui'] +
+                ('js/comments.js', ))