Merge remote-tracking branch 'remotes/jiyda/220_rtl_language_support'
[mediagoblin.git] / mediagoblin / templates / mediagoblin / extra_head.html
CommitLineData
0416b866
CAW
1{#
2# GNU MediaGoblin -- federated, autonomous media hosting
3# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
4#
5# This program is free software: you can redistribute it and/or modify
6# it under the terms of the GNU Affero General Public License as published by
7# the Free Software Foundation, either version 3 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU Affero General Public License for more details.
14#
15# You should have received a copy of the GNU Affero General Public License
16# along with this program. If not, see <http://www.gnu.org/licenses/>.
17-#}
18
19{# Add extra head declarations here for your theme, if appropriate #}
f2a17ed6
A
20
21<script type="text/javascript"
e018b212 22 src="{{request.staticdirect('extlib/tinymce/js/tinymce/tinymce.min.js')}}"></script>
b4188c48 23
f2a17ed6
A
24 <script type="text/javascript">
25 tinyMCE.init({
36c7c131 26 selector: "div.blog_form_field_input textarea",
b4188c48
A
27 height: 300,
28 width: 800,
29 plugins: [
30 "advlist autolink link image lists charmap print preview hr anchor pagebreak spellchecker",
31 "searchreplace wordcount visualblocks visualchars code fullscreen insertdatetime media nonbreaking",
32 "save table contextmenu directionality emoticons template paste textcolor"
33 ]
34 })
f2a17ed6 35</script>