2010-07-25 02:20:20 -04:00
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
<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",
|
2010-07-06 08:07:28 -04:00
|
|
|
mode : "specific_textareas",
|
2010-07-30 09:09:20 -04:00
|
|
|
editor_selector: /(profile-jot-text|prvmail-text)/,
|
2010-07-01 19:48:07 -04:00
|
|
|
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,
|
|
|
|
content_css: "$baseurl/view/custom_tinymce.css"
|
|
|
|
});
|
2010-07-06 00:39:55 -04:00
|
|
|
|
2010-07-22 23:22:03 -04:00
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="include/ajaxupload.js" ></script>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
var uploader = new window.AjaxUpload(
|
|
|
|
'wall-image-upload',
|
|
|
|
{ action: 'wall_upload',
|
2010-07-23 01:41:45 -04:00
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
|
|
|
onComplete: function(file,response) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
}
|
2010-07-22 23:22:03 -04:00
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2010-07-06 00:39:55 -04:00
|
|
|
|
2010-07-23 01:41:45 -04:00
|
|
|
function jotGetLink() {
|
|
|
|
reply = prompt("Please enter a link URL:");
|
2010-07-23 02:21:40 -04:00
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#profile-rotator').show();
|
|
|
|
$.get('parse_url?url=' + reply, function(data) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
|
|
$('#profile-rotator').hide();
|
|
|
|
});
|
|
|
|
}
|
2010-07-23 01:41:45 -04:00
|
|
|
}
|
|
|
|
|
2010-07-24 09:56:02 -04:00
|
|
|
|
|
|
|
|
2010-07-23 01:41:45 -04:00
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
relative_urls: false,
|
|
|
|
document_base_url : "$baseurl/",
|
|
|
|
external_image_list_url : "$baseurl/include/imagelist-js.php",
|
|
|
|
content_css : "$baseurl/view/tiny.css"
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
-->
|