fixed quoting

This commit is contained in:
Baris Usakli
2013-07-03 14:15:19 -04:00
parent facb6eb36b
commit e24606ff73
2 changed files with 3 additions and 3 deletions

View File

@@ -434,14 +434,13 @@
var pid = $(this).parents('li').attr('data-pid'); var pid = $(this).parents('li').attr('data-pid');
socket.once('api:posts.getRawPost', function(data) { socket.once('api:posts.getRawPost', function(data) {
quoted = '> ' + data.post.replace(/\n/g, '\n> ') + '\n\n'; quoted = '> ' + data.post.replace(/\n/g, '\n> ') + '\n\n';
require(['composer'], function(cmp) { require(['composer'], function(cmp) {
cmp.push(tid, null, null, quoted); cmp.push(tid, null, null, quoted);
}); });
}); });
socket.emit('api:posts.getRawPost', { pid: pid }); socket.emit('api:posts.getRawPost', { pid: pid });
// $('.post-window textarea').val('> ' + $('#content_' + pid).html() + '\n');
// });
} }
}); });

View File

@@ -339,7 +339,8 @@ var SocketIO = require('socket.io').listen(global.server, { log:false }),
socket.emit('api:composer.push', { socket.emit('api:composer.push', {
tid: data.tid, tid: data.tid,
title: topicData.title title: topicData.title,
body: topicData.body
}); });
}); });
} else if (parseInt(data.cid) > 0) { } else if (parseInt(data.cid) > 0) {