2010-07-25 02:20:20 -04:00
|
|
|
|
2010-08-02 22:06:36 -04:00
|
|
|
<script language="javascript" type="text/javascript">
|
2010-07-01 19:48:07 -04:00
|
|
|
|
2011-01-31 17:21:23 -05:00
|
|
|
var editor;
|
2011-05-01 22:50:00 -04:00
|
|
|
var textlen = 0;
|
2011-01-31 17:21:23 -05:00
|
|
|
|
2011-07-20 04:00:33 -04:00
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
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)/,
|
2011-07-19 00:25:49 -04:00
|
|
|
plugins : "bbcode,paste,autoresize",
|
2011-02-01 02:06:45 -05:00
|
|
|
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
|
2010-07-01 19:48:07 -04:00
|
|
|
theme_advanced_buttons2 : "",
|
|
|
|
theme_advanced_buttons3 : "",
|
|
|
|
theme_advanced_toolbar_location : "top",
|
|
|
|
theme_advanced_toolbar_align : "center",
|
2010-08-12 04:47:08 -04:00
|
|
|
theme_advanced_blockformats : "blockquote,code",
|
2011-01-31 17:21:23 -05:00
|
|
|
paste_text_sticky : true,
|
2010-07-01 19:48:07 -04:00
|
|
|
entity_encoding : "raw",
|
|
|
|
add_unload_trigger : false,
|
|
|
|
remove_linebreaks : false,
|
2010-11-21 21:16:59 -05:00
|
|
|
force_p_newlines : false,
|
|
|
|
force_br_newlines : true,
|
|
|
|
forced_root_block : '',
|
2010-08-02 22:06:36 -04:00
|
|
|
convert_urls: false,
|
2010-08-07 05:53:59 -04:00
|
|
|
content_css: "$baseurl/view/custom_tinymce.css",
|
|
|
|
theme_advanced_path : false,
|
|
|
|
setup : function(ed) {
|
2011-07-20 04:00:33 -04:00
|
|
|
//Character count
|
2010-08-07 05:53:59 -04:00
|
|
|
ed.onKeyUp.add(function(ed, e) {
|
|
|
|
var txt = tinyMCE.activeEditor.getContent();
|
2011-05-19 23:41:40 -04:00
|
|
|
textlen = txt.length;
|
2011-05-01 22:50:00 -04:00
|
|
|
if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) {
|
|
|
|
$('#profile-jot-desc').html(ispublic);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$('#profile-jot-desc').html(' ');
|
|
|
|
}
|
2011-05-19 23:11:09 -04:00
|
|
|
|
2011-05-01 22:50:00 -04:00
|
|
|
if(textlen <= 140) {
|
2010-08-07 05:53:59 -04:00
|
|
|
$('#character-counter').removeClass('red');
|
|
|
|
$('#character-counter').removeClass('orange');
|
|
|
|
$('#character-counter').addClass('grey');
|
|
|
|
}
|
2011-05-01 22:50:00 -04:00
|
|
|
if((textlen > 140) && (textlen <= 420)) {
|
2010-08-07 05:53:59 -04:00
|
|
|
$('#character-counter').removeClass('grey');
|
|
|
|
$('#character-counter').removeClass('red');
|
|
|
|
$('#character-counter').addClass('orange');
|
|
|
|
}
|
2011-05-01 22:50:00 -04:00
|
|
|
if(textlen > 420) {
|
2010-08-07 05:53:59 -04:00
|
|
|
$('#character-counter').removeClass('grey');
|
|
|
|
$('#character-counter').removeClass('orange');
|
|
|
|
$('#character-counter').addClass('red');
|
|
|
|
}
|
2011-05-01 22:50:00 -04:00
|
|
|
$('#character-counter').text(textlen);
|
2011-07-20 04:00:33 -04:00
|
|
|
});
|
2011-01-31 17:21:23 -05:00
|
|
|
|
|
|
|
ed.onInit.add(function(ed) {
|
|
|
|
ed.pasteAsPlainText = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2010-07-01 19:48:07 -04:00
|
|
|
});
|
2010-07-06 00:39:55 -04:00
|
|
|
|
2011-07-20 04:00:33 -04:00
|
|
|
|
2010-07-22 23:22:03 -04:00
|
|
|
</script>
|
|
|
|
<script type="text/javascript" src="include/ajaxupload.js" ></script>
|
|
|
|
<script>
|
2011-05-01 22:50:00 -04:00
|
|
|
var ispublic = '$ispublic';
|
2010-07-22 23:22:03 -04:00
|
|
|
$(document).ready(function() {
|
2011-07-20 04:00:33 -04:00
|
|
|
|
|
|
|
$("#profile-jot-acl-wrapper").hide();
|
|
|
|
$("a#jot-perms-icon").fancybox({
|
|
|
|
'transitionIn' : 'none',
|
|
|
|
'transitionOut' : 'none'
|
|
|
|
});
|
|
|
|
|
2010-07-22 23:22:03 -04:00
|
|
|
var uploader = new window.AjaxUpload(
|
|
|
|
'wall-image-upload',
|
2010-12-05 21:08:36 -05:00
|
|
|
{ action: 'wall_upload/$nickname',
|
2010-07-23 01:41:45 -04:00
|
|
|
name: 'userfile',
|
|
|
|
onSubmit: function(file,ext) { $('#profile-rotator').show(); },
|
|
|
|
onComplete: function(file,response) {
|
2010-08-04 23:03:38 -04:00
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,response);
|
2010-07-23 01:41:45 -04:00
|
|
|
$('#profile-rotator').hide();
|
|
|
|
}
|
2010-07-22 23:22:03 -04:00
|
|
|
}
|
|
|
|
);
|
2011-05-25 01:40:52 -04:00
|
|
|
var file_uploader = new window.AjaxUpload(
|
|
|
|
'wall-file-upload',
|
|
|
|
{ action: 'wall_attach/$nickname',
|
|
|
|
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
|
|
|
|
|
|
|
});
|
|
|
|
|
2011-06-15 23:43:39 -04:00
|
|
|
function deleteCheckedItems() {
|
|
|
|
var checkedstr = '';
|
|
|
|
|
|
|
|
$('.item-select').each( function() {
|
|
|
|
if($(this).is(':checked')) {
|
2011-06-16 18:26:39 -04:00
|
|
|
if(checkedstr.length != 0) {
|
2011-06-15 23:43:39 -04:00
|
|
|
checkedstr = checkedstr + ',' + $(this).val();
|
2011-06-16 18:26:39 -04:00
|
|
|
}
|
|
|
|
else {
|
2011-06-15 23:43:39 -04:00
|
|
|
checkedstr = $(this).val();
|
2011-06-16 18:26:39 -04:00
|
|
|
}
|
2011-06-15 23:43:39 -04:00
|
|
|
}
|
|
|
|
});
|
2011-06-16 03:38:41 -04:00
|
|
|
$.post('item', { dropitems: checkedstr }, function(data) {
|
|
|
|
window.location.reload();
|
|
|
|
});
|
2011-06-15 23:43:39 -04:00
|
|
|
}
|
|
|
|
|
2010-07-23 01:41:45 -04:00
|
|
|
function jotGetLink() {
|
2011-03-21 03:21:35 -04:00
|
|
|
reply = prompt("$linkurl");
|
2010-07-23 02:21:40 -04:00
|
|
|
if(reply && reply.length) {
|
2011-04-10 06:36:12 -04:00
|
|
|
reply = bin2hex(reply);
|
2010-07-23 02:21:40 -04:00
|
|
|
$('#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-08-19 23:52:49 -04:00
|
|
|
function jotGetVideo() {
|
2011-03-21 03:21:35 -04:00
|
|
|
reply = prompt("$utubeurl");
|
2010-08-19 23:52:49 -04:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-17 00:14:22 -04:00
|
|
|
function jotVideoURL() {
|
2011-03-21 03:21:35 -04:00
|
|
|
reply = prompt("$vidurl");
|
2011-03-17 00:14:22 -04:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[video]' + reply + '[/video]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function jotAudioURL() {
|
2011-03-21 03:21:35 -04:00
|
|
|
reply = prompt("$audurl");
|
2011-03-17 00:14:22 -04:00
|
|
|
if(reply && reply.length) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,'[audio]' + reply + '[/audio]');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-20 17:33:15 -04:00
|
|
|
function jotGetLocation() {
|
2011-03-21 03:21:35 -04:00
|
|
|
reply = prompt("$whereareu", $('#jot-location').val());
|
2010-08-20 17:33:15 -04:00
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#jot-location').val(reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-29 21:57:26 -04:00
|
|
|
function jotTitle() {
|
|
|
|
reply = prompt("$title", $('#jot-title').val());
|
|
|
|
if(reply && reply.length) {
|
|
|
|
$('#jot-title').val(reply);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-16 22:36:59 -04:00
|
|
|
function jotShare(id) {
|
|
|
|
$('#like-rotator-' + id).show();
|
|
|
|
$.get('share/' + id, function(data) {
|
|
|
|
tinyMCE.execCommand('mceInsertRawHTML',false,data);
|
|
|
|
$('#like-rotator-' + id).hide();
|
|
|
|
$(window).scrollTop(0);
|
|
|
|
});
|
|
|
|
}
|
2010-08-20 17:33:15 -04:00
|
|
|
|
2010-08-02 22:06:36 -04:00
|
|
|
function linkdropper(event) {
|
|
|
|
var linkFound = event.dataTransfer.types.contains("text/uri-list");
|
|
|
|
if(linkFound)
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
2010-07-24 09:56:02 -04:00
|
|
|
|
2010-08-02 22:06:36 -04:00
|
|
|
function linkdrop(event) {
|
|
|
|
var reply = event.dataTransfer.getData("text/uri-list");
|
|
|
|
event.target.textContent = reply;
|
|
|
|
event.preventDefault();
|
|
|
|
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-10-20 03:33:17 -04:00
|
|
|
function jotClearLocation() {
|
|
|
|
$('#jot-coord').val('');
|
|
|
|
$('#profile-nolocation-wrapper').hide();
|
|
|
|
}
|
|
|
|
|
2010-10-19 23:52:05 -04:00
|
|
|
$geotag
|
2010-09-17 06:10:19 -04:00
|
|
|
|
2010-07-01 19:48:07 -04:00
|
|
|
</script>
|
|
|
|
|