2 <script language="javascript" type="text/javascript" src="$baseurl/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
3 <script language="javascript" type="text/javascript">
9 mode : "specific_textareas",
10 editor_selector: /(profile-jot-text|prvmail-text)/,
11 plugins : "bbcode,paste",
12 theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
13 theme_advanced_buttons2 : "",
14 theme_advanced_buttons3 : "",
15 theme_advanced_toolbar_location : "top",
16 theme_advanced_toolbar_align : "center",
17 theme_advanced_blockformats : "blockquote,code",
18 paste_text_sticky : true,
19 entity_encoding : "raw",
20 add_unload_trigger : false,
21 remove_linebreaks : false,
22 force_p_newlines : false,
23 force_br_newlines : true,
24 forced_root_block : '',
26 content_css: "$baseurl/view/custom_tinymce.css",
28 theme_advanced_path : false,
29 setup : function(ed) {
30 ed.onKeyUp.add(function(ed, e) {
31 var txt = tinyMCE.activeEditor.getContent();
32 var text = txt.length;
33 if(txt.length <= 140) {
34 $('#character-counter').removeClass('red');
35 $('#character-counter').removeClass('orange');
36 $('#character-counter').addClass('grey');
38 if((txt.length > 140) && (txt .length <= 420)) {
39 $('#character-counter').removeClass('grey');
40 $('#character-counter').removeClass('red');
41 $('#character-counter').addClass('orange');
43 if(txt.length > 420) {
44 $('#character-counter').removeClass('grey');
45 $('#character-counter').removeClass('orange');
46 $('#character-counter').addClass('red');
48 $('#character-counter').text(text);
51 ed.onInit.add(function(ed) {
52 ed.pasteAsPlainText = true;
59 <script type="text/javascript" src="include/ajaxupload.js" ></script>
61 $(document).ready(function() {
62 var uploader = new window.AjaxUpload(
64 { action: 'wall_upload/$nickname',
66 onSubmit: function(file,ext) { $('#profile-rotator').show(); },
67 onComplete: function(file,response) {
68 tinyMCE.execCommand('mceInsertRawHTML',false,response);
69 $('#profile-rotator').hide();
73 $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
75 $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
76 selstr = $(this).text();
77 $('#profile-jot-perms img').attr('src', 'images/lock_icon.gif');
78 $('.profile-jot-net input').attr('disabled', 'disabled');
81 $('#profile-jot-perms img').attr('src', 'images/unlock_icon.gif');
82 $('.profile-jot-net input').attr('disabled', false);
89 function jotGetLink() {
90 reply = prompt("Please enter a link URL:");
91 if(reply && reply.length) {
92 $('#profile-rotator').show();
93 $.get('parse_url?url=' + reply, function(data) {
94 tinyMCE.execCommand('mceInsertRawHTML',false,data);
95 $('#profile-rotator').hide();
100 function jotGetVideo() {
101 reply = prompt("Please enter a YouTube link:");
102 if(reply && reply.length) {
103 tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
107 function jotGetLocation() {
108 reply = prompt("Where are you right now?", $('#jot-location').val());
109 if(reply && reply.length) {
110 $('#jot-location').val(reply);
115 function linkdropper(event) {
116 var linkFound = event.dataTransfer.types.contains("text/uri-list");
118 event.preventDefault();
121 function linkdrop(event) {
122 var reply = event.dataTransfer.getData("text/uri-list");
123 event.target.textContent = reply;
124 event.preventDefault();
125 if(reply && reply.length) {
126 $('#profile-rotator').show();
127 $.get('parse_url?url=' + reply, function(data) {
128 tinyMCE.execCommand('mceInsertRawHTML',false,data);
129 $('#profile-rotator').hide();
134 function jotClearLocation() {
135 $('#jot-coord').val('');
136 $('#profile-nolocation-wrapper').hide();