diff options
author | Friendika <info@friendika.com> | 2010-12-28 01:06:34 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2010-12-28 01:06:34 -0800 |
commit | 7b6385df946db4a61e8fc330c1a89b1415ca68ef (patch) | |
tree | f0a5f4ba4384ee274bad694112eb0140656c3f21 /view/contact_head.tpl | |
parent | 76d92d3f6249845f5eaba573083aba0f99755afc (diff) | |
download | volse-hubzilla-7b6385df946db4a61e8fc330c1a89b1415ca68ef.tar.gz volse-hubzilla-7b6385df946db4a61e8fc330c1a89b1415ca68ef.tar.bz2 volse-hubzilla-7b6385df946db4a61e8fc330c1a89b1415ca68ef.zip |
freeform text area for private contact info - notes or things you just want to remember (addresses, phone numbers, birthdays, whatever)
Diffstat (limited to 'view/contact_head.tpl')
-rw-r--r-- | view/contact_head.tpl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/view/contact_head.tpl b/view/contact_head.tpl new file mode 100644 index 000000000..6a80c2122 --- /dev/null +++ b/view/contact_head.tpl @@ -0,0 +1,31 @@ +<script language="javascript" type="text/javascript" + src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script> + <script language="javascript" type="text/javascript"> + + +tinyMCE.init({ + theme : "advanced", + mode : "exact", + elements: "contact-edit-info", + plugins : "bbcode", + theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor", + theme_advanced_buttons2 : "", + theme_advanced_buttons3 : "", + theme_advanced_toolbar_location : "top", + theme_advanced_toolbar_align : "center", + theme_advanced_styles : "Code=codeStyle;Quote=quoteStyle", + content_css : "bbcode.css", + entity_encoding : "raw", + add_unload_trigger : false, + remove_linebreaks : false, + force_p_newlines : false, + force_br_newlines : true, + forced_root_block : '', + content_css: "$baseurl/view/custom_tinymce.css" + + +}); + + +</script> + |