Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
시간 형식, more 문구 수정
  • Loading branch information
sim0629 committed May 11, 2012
1 parent b4fc005 commit a890911
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/js/sirc.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var append_log = function(flag, datetime, source, message) {
};

var datetime_format = function(datetime) {
return datetime.substring(5, 19).replace(' ', '<br />');
return datetime.substring(5, 16).replace(' ', '<br />');
};

var datetime_now = function() {
Expand Down Expand Up @@ -101,7 +101,7 @@ var sirc_downdate = function(callback) {
if($('result', xml).attr('transition_id') == transition_id) {
add_process(xml, 'downdate');
if($('log', xml).length > 0)
$('<li><a>more</a></li>').click(function() { $(this).remove(); return sirc_downdate(); }).prependTo($('ul#log'));
$('<li><a>more...</a></li>').click(function() { $(this).remove(); return sirc_downdate(); }).prependTo($('ul#log'));
$('ul#log').listview('refresh');
if(callback) callback();
$.mobile.hidePageLoadingMsg();
Expand Down

0 comments on commit a890911

Please sign in to comment.