单词折行问题

hjq_dianming_api
Tim 10 years ago
parent f099611d7a
commit 674a8e0035

@ -150,9 +150,9 @@
<script type="text/javascript">
$(function(){
var postContent = $("#intro_content_<%= @document.id%>").html();
/*var postContent = $("#intro_content_<%#= @document.id%>").html();
postContent = postContent.replace(/&nbsp;/g," ");
$("#intro_content_<%= @document.id%>").html(postContent);
$("#intro_content_<%#= @document.id%>").html(postContent);*/
});
function expand_reply(container, btnid) {
var target = $(container);

@ -50,9 +50,9 @@
</div>
<script type="text/javascript">
var postContent = $("#intro_content_<%= document.id%>").html();
/*var postContent = $("#intro_content_<%#= document.id%>").html();
postContent = postContent.replace(/&nbsp;/g," ");
$("#intro_content_<%= document.id%>").html(postContent);
$("#intro_content_<%#= document.id%>").html(postContent);*/
function expand_reply(container, btnid) {
var target = $(container);
var btn = $(btnid);

@ -5,9 +5,9 @@
</div>
<script type="text/javascript">
$(function(){
var postContent = $("#intro_content_<%= user_activity_id%>").html();
/*var postContent = $("#intro_content_<%#= user_activity_id%>").html();
postContent = postContent.replace(/&nbsp;/g," ");
$("#intro_content_<%= user_activity_id%>").html(postContent);
$("#intro_content_<%#= user_activity_id%>").html(postContent);*/
description_show_hide(<%=user_activity_id %>);
});
</script>

@ -1217,6 +1217,7 @@ ActiveRecord::Schema.define(:version => 20160122143138) do
create_table "org_members", :force => true do |t|
t.integer "user_id"
t.integer "organization_id"
t.string "role"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
end

Loading…
Cancel
Save