Mercurial > public > bravenewsurf
diff bns_website/settings/base.py @ 29:ced908af601a
Adding support for the TinyMCE javascript editor in the admin for news and reviews apps.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 04 Nov 2011 19:26:48 -0500 |
parents | a5e8741452a3 |
children | a0d3bc630ebd |
line wrap: on
line diff
--- a/bns_website/settings/base.py Tue Nov 01 20:15:21 2011 -0500 +++ b/bns_website/settings/base.py Fri Nov 04 19:26:48 2011 -0500 @@ -152,3 +152,18 @@ }, } } + +####################################################################### +# 3rd party Javascript and CSS files. +# +# Listed here to for DRY purposes. +# +THIRD_PARTY_JS = { + 'tiny_mce': [ + 'js/tinymce/jscripts/tiny_mce/tiny_mce.js', + 'js/tiny_mce_init.js', + ], +} + +THIRD_PARTY_CSS = { +}