102 lines
3.5 KiB
Plaintext
102 lines
3.5 KiB
Plaintext
|
<script>
|
||
|
var W3CDOM = document.createElement && document.getElementsByTagName;
|
||
|
|
||
|
window.onload = setMaxLength;
|
||
|
|
||
|
function setMaxLength() {
|
||
|
if (!W3CDOM) return;
|
||
|
var textareas = document.getElementsByTagName('textarea');
|
||
|
for (var i=0;i<textareas.length;i++) {
|
||
|
var textarea = textareas[i];
|
||
|
setMaxLengthItem(textareas[i]);
|
||
|
}
|
||
|
}
|
||
|
function setMaxLengthItem(textarea){
|
||
|
if (textarea.getAttribute('maxlength')) {
|
||
|
var counter = document.createElement('div');
|
||
|
counter.className = 'counter';
|
||
|
var counterClone = counter.cloneNode(true);
|
||
|
counterClone.innerHTML = '<span>0</span>/'+textarea.getAttribute('maxlength');
|
||
|
textarea.parentNode.insertBefore(counterClone,textarea.nextSibling);
|
||
|
textarea.relatedElement = counterClone.getElementsByTagName('span')[0];
|
||
|
textarea.onkeyup = textarea.onchange = checkMaxLength;
|
||
|
textarea.onkeyup();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function checkMaxLength() {
|
||
|
var maxLength = this.getAttribute('maxlength');
|
||
|
var currentLength = this.value.length;
|
||
|
if (currentLength > maxLength)
|
||
|
this.relatedElement.className = 'toomuch';
|
||
|
else
|
||
|
this.relatedElement.className = '';
|
||
|
this.relatedElement.firstChild.nodeValue = currentLength;
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
<!-- fq -->
|
||
|
<% reply_allow = JournalsForMessage.create_by_user? User.current %>
|
||
|
|
||
|
<h3><%= l(:label_user_response) %></h3>
|
||
|
|
||
|
<% if !User.current.logged?%>
|
||
|
<div style="font-size: 14px;margin:20px;">
|
||
|
<%= l(:label_user_login_tips) %>
|
||
|
<%= link_to l(:label_user_login_new), signin_path %>
|
||
|
<hr/>
|
||
|
</div>
|
||
|
<% else %>
|
||
|
<div style="width: 80%; margin-left:10%;">
|
||
|
<%= form_for('new_form', :method => :post,
|
||
|
:url => {:controller => 'words', :action => 'leave_course_message'}) do |f|%>
|
||
|
<%= f.text_area 'course_message', :rows => 3, :cols => 65,
|
||
|
:placeholder => "#{l(:label_welcome_my_respond)}",
|
||
|
:style => "resize: none; width: 98%",
|
||
|
:class => 'noline'%>
|
||
|
<%= submit_tag l(:button_leave_meassge), :name => nil , :class => "enterprise" , :style => "display: block; float: right; margin-right: 1%; margin-top: 1px;"%>
|
||
|
<% end %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
<div style="clear: both;"></div>
|
||
|
<% if @jour.size >0 %>
|
||
|
<ul class="message-for-user">
|
||
|
<% for journal in @jour%>
|
||
|
<li id='word_li_<%=journal.id.to_s%>' class="outer-message-for-user">
|
||
|
<span class="portrait"><%= image_tag(url_to_avatar(journal.user), :class => "avatar") %></span>
|
||
|
<span class="body">
|
||
|
<span class="user"><%= link_to journal.user, user_path(journal.user)%></span>
|
||
|
<%= textilizable journal.notes%>
|
||
|
<span class="font_lighter"> <%= l :label_update_time %>: <%= format_time journal.created_on %></span>
|
||
|
<% id = 'course_respond_form_'+journal.id.to_s%>
|
||
|
<span>
|
||
|
<% if reply_allow %>
|
||
|
<%= link_to l(:label_projects_feedback_respond),'#',
|
||
|
{:focus => 'course_respond',
|
||
|
:onclick => "toggleAndSettingWordsVal($('##{id}'),
|
||
|
$('##{id} textarea'),
|
||
|
'#{l(:label_reply_plural)} #{journal.user.name}: ');
|
||
|
return false;"} %>
|
||
|
<% end %>
|
||
|
</span>
|
||
|
</span>
|
||
|
<div style="clear: both;"></div>
|
||
|
<% if reply_allow %>
|
||
|
<div id='<%= id %>' class="respond-form">
|
||
|
<%= render :partial => 'words/new_respond', :locals => {:journal => journal, :m_reply_id => journal} %>
|
||
|
</div>
|
||
|
<% end %>
|
||
|
<div style="clear: both;"></div>
|
||
|
<div>
|
||
|
<%= render :partial => "words/journal_reply", :locals => {:journal => journal } %>
|
||
|
</div>
|
||
|
</li>
|
||
|
<% end %>
|
||
|
</ul>
|
||
|
<% end %>
|
||
|
|
||
|
<div class="pagination" style="float:left;">
|
||
|
<ul>
|
||
|
<%= pagination_links_full @feedback_pages %>
|
||
|
</ul>
|
||
|
</div>
|