|
@@ -215,7 +215,7 @@ $(function(){
|
|
|
other_html+='<div class="li">'+
|
|
|
'<div class="li_left">'+
|
|
|
'<p class="p">'+other_ser[i].user_name+'</p>'+
|
|
|
- '<p class="prompt" id="my_prompt_l">'+mine+'</p>'+
|
|
|
+ '<p class="prompt" id="my_prompt">'+mine+'</p>'+
|
|
|
'<p style="color:#9b9b9b">'+user_comment+'</p>'+
|
|
|
'</div>'+
|
|
|
'<div class="li_right">'+
|
|
@@ -260,8 +260,13 @@ $(function(){
|
|
|
message:function(id){
|
|
|
var that=this;
|
|
|
$(id).live('touchstart',function(){
|
|
|
- that.input_msg(that.msg.no_yanz, that.btnname.just_white);
|
|
|
+ if($(this).text()=='留言'){
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ that.input_msg(that.msg.no_yanz, that.btnname.just_white);
|
|
|
$('#pass_msg').focus();
|
|
|
+ }
|
|
|
});
|
|
|
$('#post').live('touchstart',function(){
|
|
|
var msg=$('#pass_msg').val();
|
|
@@ -275,7 +280,7 @@ $(function(){
|
|
|
}),function (data, status) {
|
|
|
return false;
|
|
|
};
|
|
|
- $('#my_prompt_l').html(msg);
|
|
|
+ $('#message').text(msg);
|
|
|
$('#bomb').remove();
|
|
|
}
|
|
|
});
|