modified : add comment box structure changed
This commit is contained in:
parent
b6a0f05336
commit
b93b4ccb12
1 changed files with 7 additions and 1 deletions
|
@ -130,7 +130,13 @@ TimeComments.prototype.AddComment = function(){
|
|||
|
||||
var commentData = document.createElement('div');
|
||||
commentData.className = 'cb-vjs-comment-data';
|
||||
commentData.innerHTML = "<img src="+timecomments.settings.userprofile+"><span class='time-username'>"+timecomments.settings.username+"</span><<textarea id='timecommnts-send-box' class='timecommnts-send-box' maxlength='60'></textarea>";
|
||||
commentData.innerHTML = "<div>"+
|
||||
"<img src="+timecomments.settings.userprofile+">"+
|
||||
"<span class='time-username'>"+timecomments.settings.username+"</span>"+
|
||||
"</div>"+
|
||||
"<div>"+
|
||||
"<textarea id='timecommnts-send-box' class='timecommnts-send-box' maxlength='60'></textarea>"+
|
||||
"</div>";
|
||||
|
||||
var charCounter = document.createElement('span');
|
||||
charCounter.id = "character-counter";
|
||||
|
|
Loading…
Add table
Reference in a new issue